Files
hugo-theme-stack/assets/scss/partials/base.scss
T

25 lines
432 B
SCSS
Raw Normal View History

2020-08-22 13:20:08 +02:00
html {
font-size: 62.5%;
overflow-y: scroll;
2020-08-22 13:20:08 +02:00
}
* {
box-sizing: border-box;
}
body {
background: var(--body-background);
margin: 0;
font-family: var(--base-font-family);
2020-08-22 13:20:08 +02:00
font-size: 1.6rem;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* scrollbar styles for Firefox */
* {
scrollbar-width: auto;
scrollbar-color: var(--scrollbar-thumb) transparent;
}
/**/