Move CSS variables to base file

This commit is contained in:
2022-06-13 15:27:11 +02:00
parent cfd6173baf
commit 2a3c73f6ea
2 changed files with 12 additions and 13 deletions

View File

@@ -1,3 +1,14 @@
// CSS Variables
:root {
// Sizes
--container-width: $container-width;
// Animation
--ease-quart: cubic-bezier(.165, .84, .44, 1);
--ease-cubic: cubic-bezier(.785, .135, .15, .86);
--ease-inout-quart: cubic-bezier(.76, 0, .24, 1);
}
html {
font: #{$base-font-size}/1.2 $font-sans;
font-weight: 400;