actually made the fallback color a fallback instead of just the color, imports need to be at the top oops

This commit is contained in:
Pagwin 2024-12-21 17:22:27 -05:00
parent 18b5310ced
commit 6d63d3fefd
No known key found for this signature in database
GPG key ID: 81137023740CA260
2 changed files with 8 additions and 4 deletions

View file

@ -47,8 +47,6 @@
} }
} }
@import url("/static/css/icon-colors.css") layer(import-color);
@import url("/static/css/icon-print.css") layer(print);
@layer base{ @layer base{
.box { .box {
fill: var(--background-color); fill: var(--background-color);
@ -58,6 +56,10 @@
} }
} }
</style> </style>
<style>
@import url("/static/css/icon-colors.css") layer(import-color);
@import url("/static/css/icon-print.css") layer(print);
</style>
<a href="/" target="_top"> <a href="/" target="_top">
<rect x="0" y="0" class="box" width="2048" height="1192"/> <rect x="0" y="0" class="box" width="2048" height="1192"/>
<path <path

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

View file

@ -12,8 +12,6 @@
} }
} }
@import url("/static/css/icon-colors.css") layer(import-color);
@import url("/static/css/icon-print.css") layer(print);
@layer base{ @layer base{
.box { .box {
fill: var(--background-color); fill: var(--background-color);
@ -26,6 +24,10 @@
} }
} }
</style> </style>
<style>
@import url("/static/css/icon-colors.css") layer(import-color);
@import url("/static/css/icon-print.css") layer(print);
</style>
<a href="/index.xml" target="_top"> <a href="/index.xml" target="_top">
<g> <g>
<rect x="0" y="0" class="box" width="455.731" height="455.731"/> <rect x="0" y="0" class="box" width="455.731" height="455.731"/>

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB