11 lines
329 B
SCSS
Executable file
11 lines
329 B
SCSS
Executable file
body {
|
|
background: var(--color-bg-primary);
|
|
color: var(--color-text-primary);
|
|
font-family: $font__main;
|
|
font-size: $font__size-base;
|
|
line-height: $font__line-height-body;
|
|
font-weight: $font__weight-normal;
|
|
transition: var(--transition-default);
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|