Files

9 lines
248 B
Python
Raw Permalink Normal View History

2026-01-17 18:55:25 +03:00
from os import system as console
from os.path import join
def compile_styles():
dir = "blueprints/root/static/style"
2026-02-07 16:53:40 +03:00
files = ("main", "tw")
2026-01-17 18:55:25 +03:00
for file in files:
console(f"sass {join(dir, file+'.scss')} {join(dir, file+'.css')}")