uikit-theme.scss| Commit | Message |
|---|---|
ac75fabf3 | Github pages migrated to Asciidoc |
@import is deprecated in Dart Sass 2.0+. Future migration to @use/@forward will require restructuring this file.assets/css/main.scss must have Jekyll front matter (even empty) for Jekyll to process it. Without it, Jekyll treats it as a static asset and doesn't compile SCSS.
When Jekyll builds the site, the CSS compilation flows through exactly 5 files before producing the final output:
assets/css/main.scss---\n---) which tells Jekyll to process this file. Contains:@import "uikit/uikit-theme.scss";variables.scss(#4091) +variables-theme.scss(#4092)_import.scss(#4052)_import.*.scssfilesThis file contains almost no CSS rules of its own — it's an aggregator/manifest. Its
@importorder is carefully sequenced: variables first (so components can reference them), theme overrides second (selectively modifying core defaults), then all component styles.