23 lines
407 B
SCSS
23 lines
407 B
SCSS
@mixin font-body($weight: normal) {
|
|
font-family: "Montserrat", sans-serif;
|
|
font-weight: $weight;
|
|
}
|
|
|
|
@mixin font-title($weight: normal) {
|
|
font-family: "Montserrat", sans-serif;
|
|
font-weight: $weight;
|
|
}
|
|
|
|
@mixin font-link($weight: normal) {
|
|
font-family: "Montserrat", sans-serif;
|
|
font-weight: $weight;
|
|
}
|
|
|
|
@mixin abs-full {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
left: 0;
|
|
top: 0;
|
|
}
|