15 lines
191 B
SCSS
15 lines
191 B
SCSS
@import 'utilities/textsizeadjust';
|
|
|
|
*,
|
|
*::after,
|
|
*::before {
|
|
@include text-size-adjust(100%);
|
|
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html {
|
|
background-color: $color-html;
|
|
overflow-y: scroll;
|
|
}
|