mirror of
https://github.com/mantinedev/next-app-template.git
synced 2026-07-25 01:13:14 +10:00
Add sass example
This commit is contained in:
@@ -1,10 +0,0 @@
|
||||
.title {
|
||||
color: light-dark(var(--mantine-color-black), var(--mantine-color-white));
|
||||
font-size: rem(100px);
|
||||
font-weight: 900;
|
||||
letter-spacing: rem(-2px);
|
||||
|
||||
@media (max-width: $mantine-breakpoint-md) {
|
||||
font-size: rem(50px);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
.title {
|
||||
color: light-dark(var(--mantine-color-black), var(--mantine-color-white));
|
||||
font-size: mantine.rem(100px);
|
||||
font-weight: 900;
|
||||
letter-spacing: mantine.rem(-2px);
|
||||
|
||||
@media (max-width: mantine.$mantine-breakpoint-md) {
|
||||
font-size: mantine.rem(50px);
|
||||
}
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
import classes from './Welcome.module.scss';
|
||||
import { Anchor, Text, Title } from '@mantine/core';
|
||||
import classes from './Welcome.module.css';
|
||||
|
||||
export function Welcome() {
|
||||
return (
|
||||
|
||||
Reference in New Issue
Block a user