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/www.scss | |
parent | c1d676f4a81d2bc5e29c2cb592862a36794ef711 (diff) | |
download | lesoiseaux.io-c10958c37231899841c5c429c816628402d7a762.tar.gz |
Upgrade SCSS to drop @import and prefer @use statements
Diffstat (limited to 'assets/scss/www.scss')
-rwxr-xr-x | assets/scss/www.scss | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/assets/scss/www.scss b/assets/scss/www.scss index 27a7427..434524a 100755 --- a/assets/scss/www.scss +++ b/assets/scss/www.scss @@ -13,8 +13,8 @@ $bg-txt-on: rgba(187, 205, 150, 1); $bg-vdo: rgba(109, 144, 162, 0.7); $bg-vdo-on: rgba(109, 144, 162, 1); -@import 'normalize'; -@import 'skeleton'; +@use 'normalize'; +@use 'skeleton'; h1,h2,h3,h4,h5,h6 { font-family: $serif; |