jekyll-bhautiki 0.1.6 → 0.1.7

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: 0d137aabc6072194b3b050205f085d4ee1975894ed48fa9e7eee7f3ebaff8cdf
4
- data.tar.gz: d613fc7f41c6f678168622453e40a7b17908f63195609bad7ba7e65e1e885fd6
3
+ metadata.gz: 20a1e11ff732f2dab8fe278c87b7af977323eb0dd8893d4825b9f65b73773d6d
4
+ data.tar.gz: 19e2f6e77f7722ebe7dc4b83294844516372ffba1cfd7d46728067a4525ce3d0
5
5
  SHA512:
6
- metadata.gz: b1acab5962793bb8426f545843a2b3cad95f1da6c0810ee72e3827c32e67aab5294f031404f796a9860cc4b6a056e9928f8701c578c44d672940d1a6bd9b6f5c
7
- data.tar.gz: cacbcdb8c55d58df9b92fe0a589e701c67a85214844ff236c439873449f10681043c05c0ea026923f72bb8b0579720fa4d7231915c01378cbb99fbb2297b9667
6
+ metadata.gz: 427cef083839a2c0fc147fb774ff9e00b814a8825d77ff010d45bbe39bcbf4120317ea92dd2fdcf7c2f6abefd9aa519befafe5ddb65c842c8ff61190bbaa1cd3
7
+ data.tar.gz: 8b069ed9a616c5281ca8ea5a925f5c419d528d919574d249e156e060ffd809cb7593ca8249e4021fe4ac0604e51e38e17c6b2042cb925a7d6e00e2f941d92607
data/_config.yml CHANGED
@@ -103,6 +103,7 @@ exclude:
103
103
  - jekyll-bhautiki.gemspec
104
104
  - docs/
105
105
  - Rakefile
106
+ - run.sh
106
107
 
107
108
  kramdown:
108
109
  syntax_highlighter: rouge
@@ -1,3 +1,4 @@
1
+ @use "sass:meta"
1
2
 
2
3
  @mixin light-mode
3
4
  --color: #06080F
@@ -31,11 +32,11 @@
31
32
 
32
33
  html, html[data-theme="light"]
33
34
  @include light-mode
34
- @import '../../assets/external/pygments/css/default'
35
+ @include meta.load-css('../../assets/external/pygments/css/default')
35
36
 
36
37
  html[data-theme="dark"]
37
38
  @include dark-mode
38
- @import '../../assets/external/pygments/css/monokai'
39
+ @include meta.load-css('../../assets/external/pygments/css/monokai')
39
40
 
40
41
  @media (prefers-color-scheme: dark)
41
42
  html, html[data-theme="dark"]
@@ -1,11 +1,13 @@
1
+ @use "variables"
2
+
1
3
  @use 'feather'
2
4
  @use 'image'
3
5
 
4
6
  #nav
5
- width: $bar-width
7
+ width: variables.$bar-width
6
8
 
7
9
  .grid-y
8
- min-height: $bar-height
10
+ min-height: variables.$bar-height
9
11
 
10
12
  .text-left
11
13
  text-align: left
@@ -1,11 +1,13 @@
1
+ @use "variables"
2
+
1
3
  @use 'feather'
2
4
  @use 'image'
3
5
 
4
6
  #side
5
- width: $bar-width
7
+ width: variables.$bar-width
6
8
 
7
9
  .grid-y
8
- min-height: $bar-height
10
+ min-height: variables.$bar-height
9
11
 
10
12
  img
11
13
  @include image.bar-image
data/_sass/main.sass CHANGED
@@ -1,10 +1,10 @@
1
1
  // Import all variables. Must be on top.
2
- @import 'common/variables'
2
+ @use 'common/variables'
3
3
 
4
- @import 'common/nav'
5
- @import 'common/feather'
6
- @import 'common/side'
7
- @import 'common/syntax'
8
- @import 'layouts/categories'
9
- @import 'layouts/default'
10
- @import 'common/mode'
4
+ @use 'common/nav'
5
+ @use 'common/feather'
6
+ @use 'common/side'
7
+ @use 'common/syntax'
8
+ @use 'layouts/categories'
9
+ @use 'layouts/default'
10
+ @use 'common/mode'
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  ---
3
3
 
4
- @import 'main'
4
+ @use 'main'
5
5
 
6
6
  /* Add custom theme here */