refactor: css variables for colors and shadows

This commit is contained in:
2025-08-14 18:18:24 +04:00
parent 28004dc2a0
commit 43355b6ce3
12 changed files with 79 additions and 69 deletions

View File

@ -5,10 +5,10 @@
@media (max-width: 48em) {
@mixin dark {
box-shadow: 2px 2px 15px 1px var(--mantine-color-dark-6);
box-shadow: var(--dark-shadow);
}
@mixin light {
box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.16);
box-shadow: var(--light-shadow);
}
}
}