chore: Update Zen Browser styles for dark mode compatibility

This commit is contained in:
Mauro Balades 2024-07-19 21:50:11 +02:00
parent e1e910e339
commit 16f7b06cec
312 changed files with 606 additions and 357 deletions

9
scripts/update_newtab.py Normal file
View file

@ -0,0 +1,9 @@
import os
def update_newtab(init: bool = True):
if init:
os.system("(cd ./engine/browser/components/newtab && ../../../mach npm install && ../../../mach npm install meow@9.0.0)")
os.system("cd ./engine && ./mach npm run bundle --prefix=browser/components/newtab")
if __name__ == "__main__":
update_newtab(False)