20 lines
249 B
SCSS
20 lines
249 B
SCSS
@import 'utilities/textsizeadjust';
|
|
|
|
*,
|
|
*::after,
|
|
*::before {
|
|
@include text-size-adjust(100%);
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html {
|
|
height: 100%;
|
|
overflow-y: scroll;
|
|
}
|
|
|
|
body {
|
|
min-height: 100%;
|
|
padding-bottom: 20px;
|
|
padding-top: 100px;
|
|
}
|