18 lines
414 B
CSS
18 lines
414 B
CSS
@import url('../styles/settings.css');
|
|
|
|
html {
|
|
font-size: var(--typo-size-base);
|
|
}
|
|
|
|
body {
|
|
font: 16px/1.5 var(--font-body);
|
|
font-family: var(--font-body), sans-serif;
|
|
font-feature-settings: "kern" 1;
|
|
font-weight: var(--typo-weight-regular);
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
color: var(--color-text-primary);
|
|
|
|
background-color: var(--color-surface-base);
|
|
}
|