Files
stand/assets/sass/main.scss

17 lines
233 B
SCSS
Raw Normal View History

2020-12-20 20:28:40 -03:00
@use "sass:map";
@import 'reset';
2021-01-12 11:44:15 -03:00
@import 'variables';
html {
font-family: $font_family;
}
@import 'common';
2020-12-20 20:28:40 -03:00
@media screen and (max-width: 800px) {
@import 'phone';
}
@media screen and (min-width: 800px) {
2021-01-12 11:44:15 -03:00
@import 'wide';
2021-01-04 01:06:50 -03:00
}