sass-zero 1.2.1 → 1.2.2

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: f7f05e20af5e4a52e6185beed33e25344e260fa78c2f187921b0b7701db2c6b9
4
- data.tar.gz: 909717b4652838d63db482582f4e2b77aeb0f48be60f0fda8ad810d190fd53e3
3
+ metadata.gz: 1a26aefa62e61441b5d4fee85a87cb5f84f46cabca144bf8f23f40005c20e9e3
4
+ data.tar.gz: caafc10d6e32d80c05a1e9aac2cb39925d080d254a3b672e1be5cf3c71d5d333
5
5
  SHA512:
6
- metadata.gz: 3966527028e6ea03365fd5e38c38528807749acf34a49b48601c5fd36ccdc0aace2f5e1bb4944c61fa76d8d92366e51af8fdf43cc158be99583feb9ac9ac8767
7
- data.tar.gz: 62a7f6214a40c498dcbb54908480f09824cb72359566326c18a567ae6d7df11c9527b529ab92c1616d0a2aa368161310468f60c231622bf5a1c0966cd5b3bd84
6
+ metadata.gz: dc6970b49c3917c35673b82496b8a962502dac89ae655c9e1e41a28198067c8989b8fc6c50209036cfedc1e85b3dee90e0d178111fa2e0f32e1750a5076fa0d7
7
+ data.tar.gz: 0752702cc2605c8c830eb58065e096a0043bc0139e76af7c11101f575bf93a622bd3f80e9a0a5a04f552d68894eae2d346d459f14db37a8b2766637995dafc52
@@ -280,6 +280,8 @@ $blue-gray-700: #334155;
280
280
  $blue-gray-800: #1e293b;
281
281
  $blue-gray-900: #0f172a;
282
282
 
283
+ @function gradient($direction, $from, $to: transparent, $via: null) {}
284
+
283
285
  // *******************************************************************
284
286
  // Effects
285
287
  // *******************************************************************
@@ -724,4 +726,3 @@ $z-50: 50;
724
726
  @mixin outline-none {}
725
727
  @mixin progress-bar {}
726
728
  @mixin make-container($padding-x: $size-4) {}
727
- @mixin gradient($direction, $from, $to: transparent, $via: null) {}
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- sass-zero (1.2.1)
4
+ sass-zero (1.2.2)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -38,11 +38,3 @@
38
38
  margin-right: auto;
39
39
  margin-left: auto;
40
40
  }
41
-
42
- @mixin gradient($direction, $from, $to: transparent, $via: null) {
43
- @if $via {
44
- background-image: linear-gradient($direction, $from, $via, $to);
45
- } @else {
46
- background-image: linear-gradient($direction, $from, $to);
47
- }
48
- }
@@ -41,7 +41,6 @@ html {
41
41
  border-radius: $radius-primary;
42
42
  border-width: $border;
43
43
  display: inline-block;
44
- font-weight: $font-bold;
45
44
  padding: $size-2 $size-3;
46
45
  cursor: pointer;
47
46
 
@@ -158,10 +157,6 @@ hr {
158
157
  margin: $size-6 $size-0;
159
158
  }
160
159
 
161
- a {
162
- font-weight: $font-bold;
163
- }
164
-
165
160
  menu, ul, ol {
166
161
  padding-left: $size-10;
167
162
  }
@@ -1,6 +1,6 @@
1
1
  // *******************************************************************
2
- // Default color palette
3
- // Sass-zero includes an expertly-crafted default color palette
2
+ // Default Color Palette
3
+ // SASS-ZERO includes an expertly-crafted default color palette
4
4
  // out-of-the-box that is a great starting point if you don’t
5
5
  // have your own specific branding in mind.
6
6
  // *******************************************************************
@@ -251,3 +251,16 @@ $blue-gray-600: #475569;
251
251
  $blue-gray-700: #334155;
252
252
  $blue-gray-800: #1e293b;
253
253
  $blue-gray-900: #0f172a;
254
+
255
+ // *******************************************************************
256
+ // Gradient function
257
+ // Function for creating gradient colors.
258
+ // background: gradient(to right, $indigo-500);
259
+ // *******************************************************************
260
+ @function gradient($direction, $from, $to: transparent, $via: null) {
261
+ @if $via {
262
+ @return linear-gradient($direction, $from, $via, $to);
263
+ } @else {
264
+ @return linear-gradient($direction, $from, $to);
265
+ }
266
+ }
@@ -1,6 +1,6 @@
1
1
  // *******************************************************************
2
2
  // Default sizing scale
3
- // By default, sass-zero includes a generous and comprehensive numeric sizing scale.
3
+ // By default, SASS-ZERO includes a generous and comprehensive numeric sizing scale.
4
4
  // *******************************************************************
5
5
  $size-px: 1px;
6
6
  $size-0: 0;
@@ -1,5 +1,5 @@
1
1
  module Sass
2
2
  module Zero
3
- VERSION = "1.2.1"
3
+ VERSION = "1.2.2"
4
4
  end
5
5
  end
data/screenshot.png CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sass-zero
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.1
4
+ version: 1.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - lazaronixon