nk_jtb 0.11.2 → 0.11.3
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/index.html +30 -19
- package/package.json +1 -1
- package/src/utilities/_typography.scss +7 -3
package/index.html
CHANGED
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
<body>
|
|
15
15
|
|
|
16
16
|
|
|
17
|
+
|
|
17
18
|
<style>
|
|
18
19
|
.fade-out-mask {
|
|
19
20
|
-webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
|
|
@@ -29,25 +30,35 @@
|
|
|
29
30
|
}
|
|
30
31
|
</style>
|
|
31
32
|
|
|
32
|
-
<div class="container
|
|
33
|
-
<
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
class="
|
|
41
|
-
|
|
42
|
-
<
|
|
43
|
-
<
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
33
|
+
<div class="container py">
|
|
34
|
+
<h2>List Styles</h2>
|
|
35
|
+
<div class="flex space-x">
|
|
36
|
+
<ul class="bx">
|
|
37
|
+
<li>Item one</li>
|
|
38
|
+
<li>Item two</li>
|
|
39
|
+
<li>Item three</li>
|
|
40
|
+
</ul>
|
|
41
|
+
<ul class="bx list-none">
|
|
42
|
+
<li>Item one</li>
|
|
43
|
+
<li>Item two</li>
|
|
44
|
+
<li>Item three</li>
|
|
45
|
+
</ul>
|
|
46
|
+
<ul class="bx list-decimal">
|
|
47
|
+
<li>Item one</li>
|
|
48
|
+
<li>Item two</li>
|
|
49
|
+
<li>Item three</li>
|
|
50
|
+
</ul>
|
|
51
|
+
<ul class="bx list-square">
|
|
52
|
+
<li>Item one</li>
|
|
53
|
+
<li>Item two</li>
|
|
54
|
+
<li>Item three</li>
|
|
55
|
+
</ul>
|
|
56
|
+
<ul class="bx list-circle">
|
|
57
|
+
<li>Item one</li>
|
|
58
|
+
<li>Item two</li>
|
|
59
|
+
<li>Item three</li>
|
|
60
|
+
</ul>
|
|
61
|
+
</div>
|
|
51
62
|
</div>
|
|
52
63
|
|
|
53
64
|
<div class="container-md py-5">
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
@use
|
|
2
|
-
@use
|
|
1
|
+
@use '../mixins/common' as *;
|
|
2
|
+
@use 'sass:map';
|
|
3
3
|
|
|
4
4
|
// ==========================================================================
|
|
5
5
|
// -- PROPERTY MAPS --
|
|
6
6
|
// ==========================================================================
|
|
7
7
|
// remove from the colour map
|
|
8
|
-
$text-colors: map.remove($color-map,
|
|
8
|
+
$text-colors: map.remove($color-map, 'danger', 'dark', 'info', 'light', 'success', 'warning');
|
|
9
9
|
|
|
10
10
|
$text-rem-sizes: (1, 1.5, 2, 2.5, 3, 4) !default;
|
|
11
11
|
|
|
@@ -118,6 +118,10 @@ $typography-properties-map: (
|
|
|
118
118
|
text-wrap: (
|
|
119
119
|
prefix: "#{$text-identifier}",
|
|
120
120
|
values: ( wrap, balance, nowrap, pretty )
|
|
121
|
+
),
|
|
122
|
+
list-style-type: (
|
|
123
|
+
prefix: "list-",
|
|
124
|
+
values: (none, disc, decimal, circle, square)
|
|
121
125
|
)
|
|
122
126
|
);
|
|
123
127
|
|