17 lines
353 B
SCSS
17 lines
353 B
SCSS
@use "../abstracts/variables" as *;
|
|
|
|
// =============================================================
|
|
// Reset / base globale
|
|
// =============================================================
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: $font-family-base;
|
|
font-size: $font-size-base;
|
|
color: $color-text;
|
|
margin: $spacing-xl;
|
|
}
|