14 lines
189 B
SCSS
14 lines
189 B
SCSS
@import 'mixins';
|
|
@import 'typographies';
|
|
|
|
.application {
|
|
@include display-flex(center, center, column);
|
|
|
|
min-height: 100vh;
|
|
max-width: 100vw;
|
|
|
|
.message {
|
|
@extend %title;
|
|
}
|
|
}
|