Skip to content

Commit 65163f9

Browse files
committed
Revert SCSS @use to @import for legacy GitHub Pages compatibility
GitHub Pages legacy build uses libsass via jekyll-sass-converter 1.x, which does not support the @use directive. Restore @import so the production build does not fail. Tracking proper migration to a GitHub Actions deploy workflow in a follow-up issue.
1 parent 151be0b commit 65163f9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

assets/main.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
# v2.0 - Redesign
66
--------------------------------------------------------------*/
77

8-
@use 'misc';
9-
@use 'timeline';
8+
@import 'misc';
9+
@import 'timeline';
1010
@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@200;400&family=Roboto:wght@400;700&display=swap');
1111
$font-brand: 'Exo 2', sans-serif;
1212
$font-main: 'Roboto', sans-serif;

0 commit comments

Comments
 (0)