Files
lair.moe/blueprints/root/modules/style.py
T

9 lines
243 B
Python
Raw 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"
files = ("main",)
for file in files:
console(f"sass {join(dir, file+'.scss')} {join(dir, file+'.css')}")