Files
osuuskauppa/styles/globals.scss
2022-11-01 21:15:51 +02:00

22 lines
294 B
SCSS

html,
body {
padding: 0;
margin: 0;
font-family: 'Quicksand';
}
@font-face {
font-family: 'Quicksand';
src: url('/Quicksand-VariableFont_wght.ttf');
}
@media (prefers-color-scheme: dark) {
html {
color-scheme: dark;
}
body {
color: white;
background: black;
}
}