18 lines
261 B
SCSS
18 lines
261 B
SCSS
@use "sass:map";
|
|
@import 'reset';
|
|
@import 'variables';
|
|
|
|
html {
|
|
font-family: $font_family;
|
|
}
|
|
|
|
@import 'common';
|
|
@import 'fonts';
|
|
|
|
@media screen and (orientation: portrait) {
|
|
@import 'phone';
|
|
}
|
|
@media screen and (orientation: landscape) {
|
|
@import 'wide';
|
|
}
|