tailwind-jekyll-theme 0.1.2 → 0.1.3

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: 72f1845e224d456fa5d29fc9bbb66e7b89369be8135aee741ce60d875b56f5d4
4
- data.tar.gz: 25e3ed1821b691f4d89a728c5e61ebd55d4e92dc38a6ca458e328c4e05803454
3
+ metadata.gz: dfcb999493669b56da06102f24ae2643b063a739b85566c627805f27d6c8dbfa
4
+ data.tar.gz: 75dc2718761f905385f708b05ccc31a81f40b701c543e6191f886de1c3738a2e
5
5
  SHA512:
6
- metadata.gz: 7021578e275e70ef6659bc62d6249ea5a225f8b657743ad92473e1e4ae696cf87407e1f6acb9df424f185a8b8a824f4d8d7623dec90fbe4ac416aedf536a8f4a
7
- data.tar.gz: 8b2d2b6134d758b04f5875a9b8b19af8aec7a4c7c698f9d8e4b1d2dae730ef996abf6ff1f6b8ad0786445a17b5e54bf8c013c7bff8f5aebf7107e90f8687fb3c
6
+ metadata.gz: 788e678728c7fde31f2962566786088d80f497d51e0dcf568ef76e5bab3f62256565b25d0d2670d10cd7092d1f576d6d67872a3a062d045aeed1d640f9c46d94
7
+ data.tar.gz: b8f14ebd83b72e39203c6223793de19b4ecaa9c7bded80ef0d002ae450ad5090206550f53bc9cac25493e12f784153148fa06817f6b90c7e1ce2e980380d3b4a
data/_includes/head.html CHANGED
@@ -3,7 +3,7 @@
3
3
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
4
4
  <meta name="viewport" content="width=device-width, initial-scale=1">
5
5
  {%- seo -%}
6
- <link rel="stylesheet" href="{{ "/assets/css/style.css" | relative_url }}">
6
+ <link rel="stylesheet" href="{{ "/assets/css/main.css" | relative_url }}">
7
7
  {%- feed_meta -%}
8
8
  {%- if jekyll.environment == 'production' and site.google_analytics -%}
9
9
  {%- include google-analytics.html -%}
@@ -47,8 +47,4 @@ $on-large: $on-laptop !default;
47
47
  "minima/base", // Defines element resets.
48
48
  "minima/layout", // Defines structure and style based on CSS selectors.
49
49
  "minima/custom-styles" // Hook to override existing styles.
50
- ;
51
-
52
- @tailwind base;
53
- @tailwind components;
54
- @tailwind utilities;
50
+ ;
@@ -0,0 +1,9 @@
1
+ ---
2
+ ---
3
+
4
+ @tailwind base;
5
+ @tailwind components;
6
+ @tailwind utilities;
7
+
8
+ @import "minima/skins/{{ site.minima.skin | default: 'classic' }}";
9
+ @import "minima/initialize";
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tailwind-jekyll-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nathan Kidd
@@ -138,7 +138,7 @@ files:
138
138
  - _sass/minima/skins/solarized-dark.scss
139
139
  - _sass/minima/skins/solarized-light.scss
140
140
  - _sass/minima/skins/solarized.scss
141
- - assets/css/style.scss
141
+ - assets/css/main.scss
142
142
  - assets/minima-social-icons.liquid
143
143
  homepage: https://github.com/n-at-han-k/tailwind-jekyll-theme
144
144
  licenses:
@@ -1,7 +0,0 @@
1
- ---
2
- # Only the main Sass file needs front matter (the dashes are enough)
3
- ---
4
-
5
- @import
6
- "minima/skins/{{ site.minima.skin | default: 'classic' }}",
7
- "minima/initialize";