@pzh-ui/css 0.0.99 → 0.0.104
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 +3 -3
- package/src/tailwind.css +593 -374
- package/src/tailwind.src.css +6 -4
package/src/tailwind.src.css
CHANGED
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
src: url("./../fonts/Karbon-Regular.woff2") format("woff2");
|
|
8
8
|
font-weight: normal;
|
|
9
9
|
font-display: swap;
|
|
10
|
+
ascent-override: 90%;
|
|
10
11
|
}
|
|
11
12
|
|
|
12
13
|
@font-face {
|
|
@@ -14,6 +15,7 @@
|
|
|
14
15
|
src: url("./../fonts/Karbon-Medium.woff2") format("woff2");
|
|
15
16
|
font-weight: bold;
|
|
16
17
|
font-display: swap;
|
|
18
|
+
ascent-override: 90%;
|
|
17
19
|
}
|
|
18
20
|
|
|
19
21
|
html {
|
|
@@ -96,7 +98,7 @@ ol li ol li ol li {
|
|
|
96
98
|
|
|
97
99
|
.pzh-form-radio:checked + span:before,
|
|
98
100
|
.pzh-form-radio:not(:checked) + span:before {
|
|
99
|
-
@apply border-pzh-gray-600 absolute left-0 top-
|
|
101
|
+
@apply border-pzh-gray-600 absolute left-0 top-1 h-5 w-5 rounded-full border;
|
|
100
102
|
content: "";
|
|
101
103
|
}
|
|
102
104
|
.pzh-form-radio:not(:checked):not(:disabled):hover + span:before,
|
|
@@ -105,7 +107,7 @@ ol li ol li ol li {
|
|
|
105
107
|
}
|
|
106
108
|
.pzh-form-radio:checked + span:after,
|
|
107
109
|
.pzh-form-radio:not(:checked) + span:after {
|
|
108
|
-
@apply bg-pzh-white absolute left-1.5 top-2 h-2 w-2 rounded-full transition duration-200;
|
|
110
|
+
@apply bg-pzh-white absolute left-1.5 top-2.5 h-2 w-2 rounded-full transition duration-200;
|
|
109
111
|
content: "";
|
|
110
112
|
}
|
|
111
113
|
.pzh-form-radio:checked + span:before {
|
|
@@ -127,7 +129,7 @@ ol li ol li ol li {
|
|
|
127
129
|
}
|
|
128
130
|
|
|
129
131
|
.pzh-form-checkbox + span:before {
|
|
130
|
-
@apply border-pzh-gray-600 absolute left-0 top-
|
|
132
|
+
@apply border-pzh-gray-600 absolute left-0 top-1 h-5 w-5 rounded border transition duration-200;
|
|
131
133
|
content: "";
|
|
132
134
|
}
|
|
133
135
|
|
|
@@ -137,7 +139,7 @@ ol li ol li ol li {
|
|
|
137
139
|
|
|
138
140
|
.pzh-form-checkbox:checked + span:after,
|
|
139
141
|
.pzh-form-checkbox:not(:checked) + span:after {
|
|
140
|
-
@apply absolute left-1 top-
|
|
142
|
+
@apply absolute left-1 top-0.5 h-3 w-3 text-white transition duration-200;
|
|
141
143
|
content: url("data:image/svg+xml; utf8, <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'><path fill='white' d='M438.6 105.4C451.1 117.9 451.1 138.1 438.6 150.6L182.6 406.6C170.1 419.1 149.9 419.1 137.4 406.6L9.372 278.6C-3.124 266.1-3.124 245.9 9.372 233.4C21.87 220.9 42.13 220.9 54.63 233.4L159.1 338.7L393.4 105.4C405.9 92.88 426.1 92.88 438.6 105.4H438.6z'/></svg>");
|
|
142
144
|
}
|
|
143
145
|
|