aboutsummaryrefslogtreecommitdiff
path: root/assets/scss/_gfx.scss
diff options
context:
space:
mode:
authorhellekin <hellekin@cepheide.org>2025-08-06 18:20:04 +0200
committerhellekin <hellekin@cepheide.org>2025-08-06 18:20:04 +0200
commitc10958c37231899841c5c429c816628402d7a762 (patch)
tree238ab318348119e18257b1ecf7378ecd7d770af3 /assets/scss/_gfx.scss
parentc1d676f4a81d2bc5e29c2cb592862a36794ef711 (diff)
downloadlesoiseaux.io-c10958c37231899841c5c429c816628402d7a762.tar.gz
Upgrade SCSS to drop @import and prefer @use statements
Diffstat (limited to 'assets/scss/_gfx.scss')
-rw-r--r--assets/scss/_gfx.scss8
1 files changed, 5 insertions, 3 deletions
diff --git a/assets/scss/_gfx.scss b/assets/scss/_gfx.scss
index 235aaf4..4f18dd3 100644
--- a/assets/scss/_gfx.scss
+++ b/assets/scss/_gfx.scss
@@ -1,11 +1,13 @@
+@use "variables";
+
body.gfx {
- background-color: $bg-gfx-on;
+ background-color: variables.$bg-gfx-on;
> aside {
&:hover, &:focus {
- background-color: $bg-gfx-on;
+ background-color: variables.$bg-gfx-on;
nav ul li:first-child {
- background: $bg-gfx-on;
+ background: variables.$bg-gfx-on;
}
}
}