From f3cc07e92c8497347157b050a8e4b41d83e1fa9c Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Tue, 10 Jun 2025 18:27:34 +0400 Subject: chore: migrate sass imports to use (#49) --- src/scss/_framework.scss | 2 ++ src/scss/global.scss | 6 +++--- 2 files changed, 5 insertions(+), 3 deletions(-) (limited to 'src/scss') 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"; -- cgit v1.2.3