katoikia-app/web-ui/web-react/src/assets/layout/sass/_main.scss

30 lines
447 B
SCSS

* {
box-sizing: border-box;
}
html {
height: 100%;
font-size: $fontSize;
}
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,
button {
text-decoration: none;
color: var(--primary-color);
}
.layout-theme-light {
background-color: #edf1f5;
}