diff options
Diffstat (limited to 'src/scss')
-rw-r--r-- | src/scss/_framework.scss | 2 | ||||
-rw-r--r-- | src/scss/global.scss | 6 |
2 files changed, 5 insertions, 3 deletions
diff --git a/src/scss/_framework.scss b/src/scss/_framework.scss index 7aa970e..1f836b1 100644 --- a/src/scss/_framework.scss +++ b/src/scss/_framework.scss @@ -1,3 +1,5 @@ +@use "variables" as *; + *, *::after, *::before { diff --git a/src/scss/global.scss b/src/scss/global.scss index 0e660b1..0c7dbb8 100644 --- a/src/scss/global.scss +++ b/src/scss/global.scss @@ -1,3 +1,3 @@ -@import "variables"; -@import "framework"; -@import "print"; +@use "variables"; +@use "framework"; +@use "print"; |