brf/client/admin/styles/_styles.scss
2025-12-18 07:31:37 +01:00

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;
}
}
}