refactor: obvious mixin light

This commit is contained in:
2025-08-14 15:27:49 +04:00
parent 8fb4121ed1
commit c3b0da1e0d
2 changed files with 6 additions and 4 deletions

View File

@ -1,7 +1,8 @@
.container {
@mixin light {
background-color: #e0f0f4;
}
@mixin dark {
background-color: var(--mantine-color-dark-7);
}

View File

@ -1,6 +1,7 @@
.project:hover {
@mixin light {
background-color: whitesmoke;
}
@mixin dark {
background-color: var(--mantine-color-dark-6);
}