mirror of
https://github.com/mantinedev/next-app-template.git
synced 2026-07-12 13:54:34 +10:00
19 lines
327 B
SCSS
19 lines
327 B
SCSS
.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;
|
|
}
|
|
}
|