From e2ead890dcae78daad9b63877dcc6e137039a0a0 Mon Sep 17 00:00:00 2001 From: Matt McKay Date: Wed, 10 Jun 2026 12:50:35 +1000 Subject: [PATCH] maint: replace deprecated Sass @import with @use Sass @import is deprecated and will be removed in Dart Sass 3.0. The two partials define no variables and share none with main.scss, so @use is a drop-in: compiled main.css is byte-identical and the build log loses all deprecation warnings. Completes the Sass follow-up from #199, now that production builds with the Gemfile's Jekyll 4.4 / Dart Sass toolchain. Co-Authored-By: Claude Fable 5 --- assets/main.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/main.scss b/assets/main.scss index fe5f0f6..ccb6594 100755 --- a/assets/main.scss +++ b/assets/main.scss @@ -5,8 +5,8 @@ # v2.0 - Redesign --------------------------------------------------------------*/ -@import 'misc'; -@import 'timeline'; +@use 'misc'; +@use 'timeline'; @import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@200;400&family=Roboto:wght@400;700&display=swap'); $font-brand: 'Exo 2', sans-serif; $font-main: 'Roboto', sans-serif;