mirror of
https://github.com/mantinedev/next-app-template.git
synced 2026-07-25 09:14:41 +10:00
Add sass example
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user