@exakt/ui 0.0.32 → 0.0.33
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/dist/module.json +1 -1
- package/dist/runtime/css/util.scss +16 -1
- package/package.json +1 -1
package/dist/module.json
CHANGED
|
@@ -11,14 +11,17 @@ $directions: (
|
|
|
11
11
|
margin-#{$direction}: #{0.2rem * $i};
|
|
12
12
|
}
|
|
13
13
|
}
|
|
14
|
+
|
|
14
15
|
.my-#{$i} {
|
|
15
16
|
margin-top: #{0.2rem * $i};
|
|
16
17
|
margin-bottom: #{0.2rem * $i};
|
|
17
18
|
}
|
|
19
|
+
|
|
18
20
|
.mx-#{$i} {
|
|
19
21
|
margin-left: #{0.2rem * $i};
|
|
20
22
|
margin-right: #{0.2rem * $i};
|
|
21
23
|
}
|
|
24
|
+
|
|
22
25
|
.ma-#{$i} {
|
|
23
26
|
margin: #{0.2rem * $i} !important;
|
|
24
27
|
}
|
|
@@ -28,14 +31,17 @@ $directions: (
|
|
|
28
31
|
padding-#{$direction}: #{0.2rem * $i};
|
|
29
32
|
}
|
|
30
33
|
}
|
|
34
|
+
|
|
31
35
|
.py-#{$i} {
|
|
32
36
|
padding-top: #{0.2rem * $i};
|
|
33
37
|
padding-bottom: #{0.2rem * $i};
|
|
34
38
|
}
|
|
39
|
+
|
|
35
40
|
.px-#{$i} {
|
|
36
41
|
padding-left: #{0.2rem * $i};
|
|
37
42
|
padding-right: #{0.2rem * $i};
|
|
38
43
|
}
|
|
44
|
+
|
|
39
45
|
.pa-#{$i} {
|
|
40
46
|
padding: #{0.2rem * $i} !important;
|
|
41
47
|
}
|
|
@@ -96,6 +102,13 @@ $directions: (
|
|
|
96
102
|
align-items: center;
|
|
97
103
|
}
|
|
98
104
|
|
|
105
|
+
.flex-align-center {
|
|
106
|
+
display: flex;
|
|
107
|
+
align-items: center;
|
|
108
|
+
align-content: center;
|
|
109
|
+
|
|
110
|
+
}
|
|
111
|
+
|
|
99
112
|
.justify-space-between {
|
|
100
113
|
justify-content: space-between;
|
|
101
114
|
}
|
|
@@ -153,10 +166,12 @@ body {
|
|
|
153
166
|
.text-center {
|
|
154
167
|
text-align: center;
|
|
155
168
|
}
|
|
156
|
-
|
|
169
|
+
|
|
170
|
+
.text-secondary {
|
|
157
171
|
opacity: 0.8;
|
|
158
172
|
font-size: small;
|
|
159
173
|
}
|
|
174
|
+
|
|
160
175
|
.e-blur {
|
|
161
176
|
background-color: rgba(0, 0, 0, 0.9);
|
|
162
177
|
}
|