diff options
author | hellekin <hellekin@cepheide.org> | 2025-08-06 18:20:04 +0200 |
---|---|---|
committer | hellekin <hellekin@cepheide.org> | 2025-08-06 18:20:04 +0200 |
commit | c10958c37231899841c5c429c816628402d7a762 (patch) | |
tree | 238ab318348119e18257b1ecf7378ecd7d770af3 /assets/scss/_branding.scss | |
parent | c1d676f4a81d2bc5e29c2cb592862a36794ef711 (diff) | |
download | lesoiseaux.io-c10958c37231899841c5c429c816628402d7a762.tar.gz |
Upgrade SCSS to drop @import and prefer @use statements
Diffstat (limited to 'assets/scss/_branding.scss')
-rw-r--r-- | assets/scss/_branding.scss | 6 |
1 files changed, 4 insertions, 2 deletions
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; } } |