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/pages | |
parent | d74eec1c47a0d4da5c50b70da3fedbdef0cafcc6 (diff) | |
download | popov.link-f3cc07e92c8497347157b050a8e4b41d83e1fa9c.tar.xz popov.link-f3cc07e92c8497347157b050a8e4b41d83e1fa9c.zip |
chore: migrate sass imports to use (#49)
Diffstat (limited to 'src/pages')
-rw-r--r-- | src/pages/blog/[...slug].astro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pages/blog/[...slug].astro b/src/pages/blog/[...slug].astro index c4e542c..2718f1b 100644 --- a/src/pages/blog/[...slug].astro +++ b/src/pages/blog/[...slug].astro @@ -23,7 +23,7 @@ const formattedDate = dayjs(post.data.pubDate.toString()).format("MMMM DD, YYYY" --- <style lang="scss"> - @import "../../scss/_variables.scss"; + @use "../../scss/variables" as *; p { opacity: 0.5; |