Files
osuuskauppa/styles/globals.scss

31 lines
441 B
SCSS

html,
body {
padding: 0;
margin: 0;
font-family: 'Quicksand';
letter-spacing: 0.8px;
}
@font-face {
font-family: 'Quicksand';
src: url('/Quicksand-VariableFont_wght.ttf');
}
@media (prefers-color-scheme: dark) {
html {
color-scheme: dark;
}
body {
color: black;
background: white;
}
}
.separator {
background-color: #c1c1c1;
width: 100%;
height: 0.05rem;
margin-top: 2rem;
margin-bottom: 2rem;
}