14 lines
126 B
SCSS
14 lines
126 B
SCSS
@layer base {
|
|
body {
|
|
line-height: 1;
|
|
}
|
|
|
|
h1, h2, h3 {
|
|
@apply font-light;
|
|
}
|
|
|
|
h1 {
|
|
@apply uppercase;
|
|
}
|
|
}
|