tailwind-jekyll-theme 0.1.2 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 72f1845e224d456fa5d29fc9bbb66e7b89369be8135aee741ce60d875b56f5d4
4
- data.tar.gz: 25e3ed1821b691f4d89a728c5e61ebd55d4e92dc38a6ca458e328c4e05803454
3
+ metadata.gz: 90ab6786ab6c2a2452f0ec812d81797adefbd9a13517b15b8fe268e1d603d1b5
4
+ data.tar.gz: e3ad7fc551480dc151665e7403eb8a8b82a42f4c58c4c6651f116bfeb713bdcf
5
5
  SHA512:
6
- metadata.gz: 7021578e275e70ef6659bc62d6249ea5a225f8b657743ad92473e1e4ae696cf87407e1f6acb9df424f185a8b8a824f4d8d7623dec90fbe4ac416aedf536a8f4a
7
- data.tar.gz: 8b2d2b6134d758b04f5875a9b8b19af8aec7a4c7c698f9d8e4b1d2dae730ef996abf6ff1f6b8ad0786445a17b5e54bf8c013c7bff8f5aebf7107e90f8687fb3c
6
+ metadata.gz: 4e5058d85150bdb626468b715f6cc474d837fdc5265970ded7c96e859cbe75957bf8506b6d876dfeb1ed5f0ff2b3fac36e2e72583c864551088bfec5a2dce3a9
7
+ data.tar.gz: 6731c5129ec675aecf9dd21f5560adc2d2b6ed50378406b6848f8d7f003610a9cd24f934d5b4975870464d97d00f9c5a9adf06c7ee67ea8f1ff6ce739d9b2217
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 -%}
@@ -0,0 +1,2 @@
1
+ @import "minima/skins/{{ site.minima.skin | default: 'classic' }}";
2
+ @import "minima/initialize";
@@ -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,8 @@
1
+ ---
2
+ ---
3
+
4
+ @tailwind base;
5
+ @tailwind components;
6
+ @tailwind utilities;
7
+
8
+ @import "tailwind-jekyll-theme";
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.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nathan Kidd
@@ -127,6 +127,7 @@ files:
127
127
  - _layouts/home.html
128
128
  - _layouts/page.html
129
129
  - _layouts/post.html
130
+ - _sass/_tailwind-jekyll-theme.scss
130
131
  - _sass/minima/_base.scss
131
132
  - _sass/minima/_layout.scss
132
133
  - _sass/minima/custom-styles.scss
@@ -138,7 +139,7 @@ files:
138
139
  - _sass/minima/skins/solarized-dark.scss
139
140
  - _sass/minima/skins/solarized-light.scss
140
141
  - _sass/minima/skins/solarized.scss
141
- - assets/css/style.scss
142
+ - assets/css/main.scss
142
143
  - assets/minima-social-icons.liquid
143
144
  homepage: https://github.com/n-at-han-k/tailwind-jekyll-theme
144
145
  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";