1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2025-07-31 12:41:08 +00:00

add new file at the end of wvc-main.scss & computes url add slash

This commit is contained in:
catborise 2020-06-08 09:15:06 +03:00
parent c43c10dece
commit 898de1ffbc
3 changed files with 5 additions and 5 deletions

View file

@ -56,7 +56,7 @@ def appsettings(request):
try:
with open(sass_dir.value + "/wvc-main.scss", "w") as main:
main.write(scss_var + "\n" + scss_boot + "\n" + scss_bootswatch)
main.write(scss_var + "\n" + scss_boot + "\n" + scss_bootswatch + "\n")
css_compressed = sass.compile(string=scss_var + "\n"+ scss_boot + "\n" + scss_bootswatch, output_style='compressed')
with open("static/" + "css/wvc-main.min.css", "w") as css: