2022-03-17 01:11:10 +01:00
|
|
|
@use '../abstracts/colors' as *;
|
2022-02-12 23:07:11 +01:00
|
|
|
|
|
|
|
:root {
|
|
|
|
@each $color, $shades in $colors {
|
|
|
|
@each $prop, $value in $shades {
|
|
|
|
--#{$color}-#{$prop}: #{$value};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-02-17 15:43:21 +01:00
|
|
|
|
|
|
|
*,
|
|
|
|
*::after,
|
|
|
|
*::before {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
2022-03-11 15:58:28 +01:00
|
|
|
|
|
|
|
body {
|
|
|
|
min-height: 100vh;
|
|
|
|
max-width: 100vw;
|
|
|
|
}
|