nk_jtb 0.9.17 → 0.9.18
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.
- package/package.json +1 -1
- package/readme.md +5 -3
- package/src/base/_base.scss +1 -1
- package/src/utilities/_grid.scss +4 -2
- package/src/utilities/_layout.scss +0 -2
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -7,10 +7,12 @@ Why!
|
|
|
7
7
|
> Because without reinventing the wheel we wouldn’t have fast cars.
|
|
8
8
|
> -- Nathan Watts
|
|
9
9
|
|
|
10
|
-
|
|
11
|
-
|
|
12
10
|
## Create documentation
|
|
13
11
|
|
|
14
12
|
```bash
|
|
15
13
|
sassdoc ./src --dest ./docs
|
|
16
|
-
```
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
## Next Release
|
|
17
|
+
|
|
18
|
+
Remove `.hide`, has been replaced with `.hidden`
|
package/src/base/_base.scss
CHANGED
package/src/utilities/_grid.scss
CHANGED
|
@@ -31,6 +31,7 @@ $num-grid-cols: get("grid.num-grid-cols", $config);
|
|
|
31
31
|
gap: $gap;
|
|
32
32
|
}
|
|
33
33
|
|
|
34
|
+
|
|
34
35
|
// ==========================================================================
|
|
35
36
|
// -- GENERAL --
|
|
36
37
|
// ==========================================================================
|
|
@@ -40,7 +41,8 @@ $grid-properties-map: (
|
|
|
40
41
|
gap: (
|
|
41
42
|
prefix: "gap-",
|
|
42
43
|
values: $gap-sizes,
|
|
43
|
-
unit: "rem"
|
|
44
|
+
unit: "rem",
|
|
45
|
+
breakpoints: ("sm", "md", "lg", "xl")
|
|
44
46
|
),
|
|
45
47
|
justify-items: (
|
|
46
48
|
prefix: "justify-items-",
|
|
@@ -95,7 +97,7 @@ $grid-properties-map: (
|
|
|
95
97
|
// ==========================================================================
|
|
96
98
|
// -- MAGIC CLASSES --
|
|
97
99
|
// ==========================================================================
|
|
98
|
-
// THIS IS EXPERIMENTAL AND MAY
|
|
100
|
+
// THIS IS EXPERIMENTAL AND MAY NOT STAY IN THE CODEBASE
|
|
99
101
|
|
|
100
102
|
// ---------------- BEFORE YOU DO ANYTHING CRAZY ------------------
|
|
101
103
|
// ALL MAGIC MIXINS MUST HAVE AT LEAST TWO MAPS OR YOU WILL GET AN
|
|
@@ -2,12 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
// prettier-ignore
|
|
4
4
|
$layout-properties-map: (
|
|
5
|
-
display: ( values: ( block, contents, flex, (hidden: none), inline-block, inline-flex, inline, ) ),
|
|
6
5
|
float: ( prefix: "float-", values: ( left, right, none ) ),
|
|
7
6
|
overflow: ( prefix:'overflow-', values: ( auto, clip, hidden, scroll, visible ) ),
|
|
8
7
|
overflow-x: ( prefix:'overflow-x-', values: ( auto, clip, hidden, scroll, visible ) ),
|
|
9
8
|
overflow-y: ( prefix:'overflow-y-', values: ( auto, clip, hidden, scroll, visible ) ),
|
|
10
|
-
visibility: ( values: ( collapse, (invisible: hidden), visible ) ),
|
|
11
9
|
z-index: ( prefix: "z-", values: ( 0, 1, 50, 100, (bottom: -1), (top: 999)) )
|
|
12
10
|
);
|
|
13
11
|
|