new-omis/resources/assets/layout/_main.scss
2024-04-03 10:16:39 +05:45

28 lines
419 B
SCSS

* {
box-sizing: border-box;
}
html {
height: 100%;
font-size: $scale;
}
body {
font-family: var(--font-family);
color: var(--text-color);
background-color: var(--surface-ground);
margin: 0;
padding: 0;
min-height: 100%;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
a {
text-decoration: none;
}
.layout-wrapper {
min-height: 100vh;
}