12 lines
235 B
SCSS
12 lines
235 B
SCSS
|
.header {
|
||
|
@include flexbox();
|
||
|
@include align-items(center);
|
||
|
@include justify-content(center);
|
||
|
@include flex-direction(column);
|
||
|
margin: 1rem;
|
||
|
|
||
|
.title {
|
||
|
font-family: 'Montserrat', sans-serif;
|
||
|
font-weight: 900;
|
||
|
}
|
||
|
}
|