From c10958c37231899841c5c429c816628402d7a762 Mon Sep 17 00:00:00 2001 From: hellekin Date: Wed, 6 Aug 2025 18:20:04 +0200 Subject: Upgrade SCSS to drop @import and prefer @use statements --- assets/scss/_branding.scss | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'assets/scss/_branding.scss') diff --git a/assets/scss/_branding.scss b/assets/scss/_branding.scss index 2efdc4d..5ce0d38 100644 --- a/assets/scss/_branding.scss +++ b/assets/scss/_branding.scss @@ -1,3 +1,5 @@ +@use "variables"; + /** * Branding **/ @@ -10,12 +12,12 @@ span.ps { } body { - font-family: $sans-serif; + font-family: variables.$sans-serif; font-size: 1em; /* No rem here, bug workaround */ > header, > footer { :link, :visited { - color: $fg-main; + color: variables.$fg-main; } } -- cgit v1.2.3