sass-zero 1.0.3 → 1.0.4
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 +4 -4
- data/app/assets/stylesheets/sass-zero/breadboard.scss +9 -5
- data/app/assets/stylesheets/sass-zero/variables/border.scss +1 -1
- data/app/assets/stylesheets/sass-zero/variables/effects.scss +2 -2
- data/app/assets/stylesheets/sass-zero/variables/flex.scss +2 -2
- data/app/assets/stylesheets/sass-zero/variables/grid.scss +6 -6
- data/lib/sass/zero/version.rb +1 -1
- data/package.json +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 639d2237bb436847c5d444782c9711f2d7a1266c9298dab7b00cdd4858bb86ce
|
4
|
+
data.tar.gz: dc62528f5f7360aa95de46fe05d1e1e57262295128b22dd3609468a7cf02c9d0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fbb3e1d5d494a8f74d0e5d6a9c8746325204468aad8b55359e0b4481ab0519b5c385697902736f07240e68a797c356c53e7a0cfa3436ca402ba2782ca3abc950
|
7
|
+
data.tar.gz: efee3e53a12963984a7d437663e90cd98409bd3bdfd68c0179e13bd54a30b1f98af02f8a44d16eb0af5933f76d2b003c6a9f0ef49954170aa2f877f81a246900
|
@@ -110,10 +110,6 @@ blockquote {
|
|
110
110
|
padding: $size-3 $size-4;
|
111
111
|
}
|
112
112
|
|
113
|
-
cite {
|
114
|
-
font-size: $text-sm;
|
115
|
-
}
|
116
|
-
|
117
113
|
code {
|
118
114
|
background-color: var(--color-bg--surface);
|
119
115
|
border-radius: $rounded;
|
@@ -182,7 +178,7 @@ fieldset, .input {
|
|
182
178
|
margin-bottom: $size-6;
|
183
179
|
}
|
184
180
|
|
185
|
-
table, details, blockquote, p, pre, ul, ol, dl {
|
181
|
+
table, details, blockquote, figure, p, pre, ul, ol, dl {
|
186
182
|
margin-bottom: $size-6;
|
187
183
|
}
|
188
184
|
|
@@ -192,6 +188,10 @@ details {
|
|
192
188
|
border-left-width: $border-4;
|
193
189
|
}
|
194
190
|
|
191
|
+
details[open] > summary {
|
192
|
+
margin-bottom: $size-1;
|
193
|
+
}
|
194
|
+
|
195
195
|
summary {
|
196
196
|
cursor: pointer;
|
197
197
|
}
|
@@ -234,3 +234,7 @@ h5, .hdg--lg {
|
|
234
234
|
h6, .hdg--base {
|
235
235
|
font-size: $text-base;
|
236
236
|
}
|
237
|
+
|
238
|
+
figcaption, cite {
|
239
|
+
font-size: $text-sm;
|
240
|
+
}
|
@@ -15,7 +15,7 @@ $rounded-full: 9999px;
|
|
15
15
|
|
16
16
|
// *******************************************************************
|
17
17
|
// Border Width
|
18
|
-
//
|
18
|
+
// Variables for controlling the width of an element's borders.
|
19
19
|
// border-width: $border;
|
20
20
|
// *******************************************************************
|
21
21
|
$border-0: 0;
|
@@ -14,7 +14,7 @@ $shadow-none: none;
|
|
14
14
|
|
15
15
|
// *******************************************************************
|
16
16
|
// Opacity
|
17
|
-
//
|
17
|
+
// Variables for controlling the opacity of an element.
|
18
18
|
// opacity: $opacity-25;
|
19
19
|
// *******************************************************************
|
20
20
|
$opacity-0: 0;
|
@@ -35,7 +35,7 @@ $opacity-100: 1;
|
|
35
35
|
|
36
36
|
// *******************************************************************
|
37
37
|
// Ring
|
38
|
-
//
|
38
|
+
// Function for creating outline rings with box-shadows.
|
39
39
|
// box-shadow: ring($width: 4px);
|
40
40
|
// *******************************************************************
|
41
41
|
@function ring($width: 3px, $color: rgba($blue-500, 0.5), $offset-width: 0px, $offset-color: $white, $inset: false) {
|
@@ -10,7 +10,7 @@ $flex-none: none;
|
|
10
10
|
|
11
11
|
// *******************************************************************
|
12
12
|
// Flex Grow
|
13
|
-
//
|
13
|
+
// Variables for controlling how flex items grow.
|
14
14
|
// flex-grow: $flex-grow-0;
|
15
15
|
// *******************************************************************
|
16
16
|
$flex-grow-0: 0;
|
@@ -18,7 +18,7 @@ $flex-grow: 1;
|
|
18
18
|
|
19
19
|
// *******************************************************************
|
20
20
|
// Flex Shrink
|
21
|
-
//
|
21
|
+
// Variables for controlling how flex items shrink.
|
22
22
|
// flex-shrink: $flex-shrink-0;
|
23
23
|
// *******************************************************************
|
24
24
|
$flex-shrink-0: 0;
|
@@ -1,6 +1,6 @@
|
|
1
1
|
// *******************************************************************
|
2
2
|
// Grid Template Columns
|
3
|
-
//
|
3
|
+
// Variables for specifying the columns in a grid layout.
|
4
4
|
// grid-template-columns: $grid-cols-1;
|
5
5
|
// *******************************************************************
|
6
6
|
$grid-cols-1: repeat(1, minmax(0, 1fr));
|
@@ -19,7 +19,7 @@ $grid-cols-none: none;
|
|
19
19
|
|
20
20
|
// *******************************************************************
|
21
21
|
// Grid Column Start / End
|
22
|
-
//
|
22
|
+
// Variables for controlling how elements are sized and placed across grid columns.
|
23
23
|
// grid-column: $col-span-1;
|
24
24
|
// *******************************************************************
|
25
25
|
$col-auto: auto;
|
@@ -39,7 +39,7 @@ $col-span-full: 1 / -1;
|
|
39
39
|
|
40
40
|
// *******************************************************************
|
41
41
|
// Grid Template Rows
|
42
|
-
//
|
42
|
+
// Variables for specifying the rows in a grid layout.
|
43
43
|
// grid-template-rows: $grid-rows-1;
|
44
44
|
// *******************************************************************
|
45
45
|
$grid-rows-1: repeat(1, minmax(0, 1fr));
|
@@ -52,7 +52,7 @@ $grid-rows-none: none;
|
|
52
52
|
|
53
53
|
// *******************************************************************
|
54
54
|
// Grid Row Start / End
|
55
|
-
//
|
55
|
+
// Variables for controlling how elements are sized and placed across grid rows.
|
56
56
|
// grid-row: $row-span-1;
|
57
57
|
// *******************************************************************
|
58
58
|
$row-auto: auto;
|
@@ -66,7 +66,7 @@ $row-span-full: 1 / -1;
|
|
66
66
|
|
67
67
|
// *******************************************************************
|
68
68
|
// Grid Auto Columns
|
69
|
-
//
|
69
|
+
// Variables for controlling the size of implicitly-created grid columns.
|
70
70
|
// grid-auto-columns: $auto-cols-auto;
|
71
71
|
// *******************************************************************
|
72
72
|
$auto-cols-auto: auto;
|
@@ -76,7 +76,7 @@ $auto-cols-fr: minmax(0, 1fr);
|
|
76
76
|
|
77
77
|
// *******************************************************************
|
78
78
|
// Grid Auto Rows
|
79
|
-
//
|
79
|
+
// Variables for controlling the size of implicitly-created grid rows.
|
80
80
|
// grid-auto-rows: $auto-rows-auto;
|
81
81
|
// *******************************************************************
|
82
82
|
$auto-rows-auto: auto;
|
data/lib/sass/zero/version.rb
CHANGED
data/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "sass-zero",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.4",
|
4
4
|
"description": "A CSS framework for rapid UI development based on tailwindcss, miligram and BEM.",
|
5
5
|
"homepage": "https://github.com/lazaronixon/sass-zero",
|
6
6
|
"repository": "lazaronixon/sass-zero",
|
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.0.
|
4
|
+
version: 1.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- lazaronixon
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-02-
|
11
|
+
date: 2022-02-04 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description:
|
14
14
|
email:
|