30 lines
252 B
SCSS
30 lines
252 B
SCSS
@use 'typography' as *;
|
|
@use 'utils' as *;
|
|
|
|
// Typography
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6 {
|
|
line-height: 100%;
|
|
color: #ffffff;
|
|
}
|
|
|
|
h1 {
|
|
@include h1('h1');
|
|
}
|
|
|
|
h2 {
|
|
@include h2('h2');
|
|
}
|
|
|
|
h3 {
|
|
@include h3('h3');
|
|
}
|
|
|
|
// Buttons
|
|
button {
|
|
cursor: pointer;
|
|
} |