refactor: fix lint css vars rules

This commit is contained in:
2026-09-08 07:02:54 +05:00
parent 5a4fbe7ac6
commit 2d24f51fd5
32 changed files with 270 additions and 265 deletions
+6 -6
View File
@@ -13,19 +13,19 @@
<style>
.meta-row {
gap: 5px;
gap: var(--space-s);
display: grid;
}
.meta-caption {
font-family: var(--font-mono);
font-size: 9px;
color: var(--muted);
font-size: var(--font-size-s);
color: var(--color-text-muted);
line-height: normal;
}
.meta-value {
margin-top: 5px;
margin-top: var(--space-s);
line-height: normal;
font: 11px var(--font-mono);
color: var(--foreground);
font: var(--font-size-s) var(--font-mono);
color: var(--color-text);
}
</style>