jekyll-theme-console 0.5.0 → 0.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fce79df1a37fb335f98b3c8bdd335e79d92ef57f46912da2b38fa582a3bd9829
4
- data.tar.gz: ce234b9afbba1c227555777092bd70f527b4e4f24eed098dcb18234684f3ff71
3
+ metadata.gz: 77c7cda60635fbcd4c8da3770a3f683de3a72365d9a8c46189dc1b317bc4afc5
4
+ data.tar.gz: 84138e0c4761ecbdcba7fcbabfbb83efcff854d7b0f0778b2ff76119cfbdd5e9
5
5
  SHA512:
6
- metadata.gz: 5e4108a94e6c68a654c8feef20787ea538bd7a3197ead66723ebd85efc6472e47b0dbdbf8fd4002c41ab97763762173b0c09dab8ae26acafd3c8908b7e792ff1
7
- data.tar.gz: 9cbd86883fb80275e010148b363993629d15243b62c3bdf7c916d6a0bac8a4ab33727ac3fc5cabd5592bec3706e86a8194224b108ffb36112cb98a4060cfc9b5
6
+ metadata.gz: bdcdf1651951d27645025b8f5b8c780333f675a4d96440b49ebd54e943a6a557f5480d00092c0505e2e9725f7ef5f0c8f718d9a467444f36739c4e68cc99a491
7
+ data.tar.gz: 859e5cd644053e695201f2a15caae53422ddae882c085e15b20962456ecec1c6be2f11cbb3ac297728b9c7fdc90ca86fd6b41e961b1a46d96f5f78b00666b2e4
@@ -2,7 +2,8 @@
2
2
  # Only the main Sass file needs front matter (the dashes are enough)
3
3
  ---
4
4
 
5
- @use "dark";
6
- @use "base";
5
+ // Use @import for compatibility with GitHub Pages (libsass)
6
+ @import "dark";
7
+ @import "base";
7
8
 
8
- @include dark.theme();
9
+ @include theme();
@@ -2,7 +2,8 @@
2
2
  # Only the main Sass file needs front matter (the dashes are enough)
3
3
  ---
4
4
 
5
- @use "hacker";
6
- @use "base";
5
+ // Use @import for compatibility with GitHub Pages (libsass)
6
+ @import "hacker";
7
+ @import "base";
7
8
 
8
- @include hacker.theme();
9
+ @include theme();
@@ -2,7 +2,8 @@
2
2
  # Only the main Sass file needs front matter (the dashes are enough)
3
3
  ---
4
4
 
5
- @use "light";
6
- @use "base";
5
+ // Use @import for compatibility with GitHub Pages (libsass)
6
+ @import "light";
7
+ @import "base";
7
8
 
8
- @include light.theme();
9
+ @include theme();
@@ -2,7 +2,8 @@
2
2
  # Only the main Sass file needs front matter (the dashes are enough)
3
3
  ---
4
4
 
5
- @use "nord";
6
- @use "base";
5
+ // Use @import for compatibility with GitHub Pages (libsass)
6
+ @import "nord";
7
+ @import "base";
7
8
 
8
- @include nord.theme();
9
+ @include theme();
data/assets/main.scss CHANGED
@@ -2,12 +2,15 @@
2
2
  # Only the main Sass file needs front matter (the dashes are enough)
3
3
  ---
4
4
 
5
- @use "light";
6
- @use "dark";
7
- @use "base";
5
+ // Use @import for compatibility with GitHub Pages (libsass)
6
+ @import "base";
8
7
 
9
- @include light.theme();
8
+ // Import light theme and include its variables first
9
+ @import "light";
10
+ @include theme();
10
11
 
12
+ // Then import dark theme and include inside media query
13
+ @import "dark";
11
14
  @media (prefers-color-scheme: dark) {
12
- @include dark.theme();
15
+ @include theme();
13
16
  }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-console
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - b2a3e8
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-08-31 00:00:00.000000000 Z
11
+ date: 2025-09-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll