sass-zero 1.2.1 → 1.2.3

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: f7f05e20af5e4a52e6185beed33e25344e260fa78c2f187921b0b7701db2c6b9
4
- data.tar.gz: 909717b4652838d63db482582f4e2b77aeb0f48be60f0fda8ad810d190fd53e3
3
+ metadata.gz: 84173599a7ae3ffc66d95c5bab33233de6b442e02a00b9f26e892b14299cecc1
4
+ data.tar.gz: fe998cb32f53eefcdf8f40269edf81a498df0b9d2ff432ff292b3729a09749b7
5
5
  SHA512:
6
- metadata.gz: 3966527028e6ea03365fd5e38c38528807749acf34a49b48601c5fd36ccdc0aace2f5e1bb4944c61fa76d8d92366e51af8fdf43cc158be99583feb9ac9ac8767
7
- data.tar.gz: 62a7f6214a40c498dcbb54908480f09824cb72359566326c18a567ae6d7df11c9527b529ab92c1616d0a2aa368161310468f60c231622bf5a1c0966cd5b3bd84
6
+ metadata.gz: 74bbff3409ab08ef848afb0ddb1102c466ed311adaa85bf51fa64b13992ad7eb336edee625739d195398366687ddace5e2e7e57a1a8d4b111b2c82ea8683b618
7
+ data.tar.gz: 4621f01917e6d3abdf8c256b03159af28fe303f2b2c6cfdc74458e1593333e300cbf8f66f84a9d62d1d71b3511e74041cee910f6c549e9dc9c3f86e4f17c60e3
@@ -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.3)
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
  }
@@ -61,28 +61,36 @@
61
61
  align-self: end;
62
62
  }
63
63
 
64
- @media (min-width: $breakpoint-sm) {
65
- .flex\@sm {
64
+ @media (min-width: $breakpoint-md) {
65
+ .flex\@md {
66
66
  display: flex;
67
67
  }
68
68
 
69
- .flex--centered\@sm {
69
+ .flex--row\@md {
70
+ flex-direction: row;
71
+ }
72
+
73
+ .flex--column\@md {
74
+ flex-direction: column;
75
+ }
76
+
77
+ .flex--centered\@md {
70
78
  justify-content: center;
71
79
  }
72
80
 
73
- .flex--align-center\@sm {
81
+ .flex--align-center\@md {
74
82
  align-items: center;
75
83
  }
76
84
 
77
- .flex--space-items\@sm {
85
+ .flex--space-items\@md {
78
86
  justify-content: space-between;
79
87
  }
80
88
 
81
- .flex--align-center\@sm {
89
+ .flex--align-center\@md {
82
90
  align-items: center;
83
91
  }
84
92
 
85
- .flex--align-bottom\@sm {
93
+ .flex--align-bottom\@md {
86
94
  align-items: flex-end;
87
95
  }
88
96
  }
@@ -78,16 +78,16 @@
78
78
  overflow: hidden;
79
79
  }
80
80
 
81
- @media (min-width: $breakpoint-sm) {
82
- .u-show--inline\@sm {
81
+ @media (min-width: $breakpoint-md) {
82
+ .u-show--inline\@md {
83
83
  display: inline;
84
84
  }
85
85
 
86
- .u-show\@sm {
86
+ .u-show\@md {
87
87
  display: block;
88
88
  }
89
89
 
90
- .u-hide\@sm {
90
+ .u-hide\@md {
91
91
  display: none;
92
92
  }
93
93
  }
@@ -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.3"
4
4
  end
5
5
  end
data/screenshot.png CHANGED
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
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.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - lazaronixon
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-07-09 00:00:00.000000000 Z
11
+ date: 2023-07-10 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description:
14
14
  email: