diff options
author | Valentin Popov <valentin@popov.link> | 2025-06-10 17:27:34 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-06-10 17:27:34 +0300 |
commit | f3cc07e92c8497347157b050a8e4b41d83e1fa9c (patch) | |
tree | a3495a57e528fa46581ff00efe6fdd785b57e34e /src/scss | |
parent | d74eec1c47a0d4da5c50b70da3fedbdef0cafcc6 (diff) | |
download | popov.link-f3cc07e92c8497347157b050a8e4b41d83e1fa9c.tar.xz popov.link-f3cc07e92c8497347157b050a8e4b41d83e1fa9c.zip |
chore: migrate sass imports to use (#49)
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"; |