Add sass example

This commit is contained in:
Vitaly Rtishchev
2023-10-12 16:36:16 +04:00
parent a91fc46d4b
commit 2a3b76badf
7 changed files with 58 additions and 13 deletions
+18
View File
@@ -0,0 +1,18 @@
.title {
color: light-dark(var(--mantine-color-black), var(--mantine-color-white));
font-size: 100px;
font-weight: 900;
letter-spacing: -2px;
@include dark {
background-color: red;
}
@include light {
background-color: blue;
}
@media (max-width: $mantine-breakpoint-md) {
font-size: 50px;
}
}