29 lines
351 B
SCSS
29 lines
351 B
SCSS
@use './variables' as v;
|
|
|
|
*,
|
|
*:before,
|
|
*:after {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
margin: 0;
|
|
}
|
|
|
|
body {
|
|
color: v.$body-font-color;
|
|
font-family: v.$body-font-family;
|
|
font-size: v.$base-font-size;
|
|
overflow-x: hidden;
|
|
overflow-y: scroll;
|
|
|
|
&.loading {
|
|
cursor: wait !important;
|
|
|
|
* {
|
|
cursor: wait !important;
|
|
}
|
|
}
|
|
}
|