@pzh-ui/css 0.0.116 → 0.0.119
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/.yarn/install-state.gz +0 -0
- package/package.json +2 -2
- package/src/tailwind.css +6 -4
- package/src/tailwind.src.css +7 -1
package/.yarn/install-state.gz
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pzh-ui/css",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.119",
|
|
4
4
|
"description": "Contains default styling for projects within Provincie Zuid-Holland.",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"publishConfig": {
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"@tailwindcss/typography": "^0.5.16",
|
|
18
18
|
"react-toastify": "^9.1.2"
|
|
19
19
|
},
|
|
20
|
-
"gitHead": "
|
|
20
|
+
"gitHead": "cefc02eca39763001719a8173f0f81747e6098ee",
|
|
21
21
|
"devDependencies": {
|
|
22
22
|
"@tailwindcss/cli": "^4.1.4",
|
|
23
23
|
"tailwindcss": "^4.1.4"
|
package/src/tailwind.css
CHANGED
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
--default-font-family: var(--font-sans);
|
|
17
17
|
--default-mono-font-family: var(--font-mono);
|
|
18
18
|
--text-s: 1rem;
|
|
19
|
-
--text-s--line-height:
|
|
19
|
+
--text-s--line-height: 150%;
|
|
20
20
|
--text-m: 1.25rem;
|
|
21
21
|
--text-m--line-height: 1.875rem;
|
|
22
22
|
--color-pzh-white: #fff;
|
|
@@ -165,9 +165,6 @@
|
|
|
165
165
|
::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {
|
|
166
166
|
padding-block: 0;
|
|
167
167
|
}
|
|
168
|
-
::-webkit-calendar-picker-indicator {
|
|
169
|
-
line-height: 1;
|
|
170
|
-
}
|
|
171
168
|
:-moz-ui-invalid {
|
|
172
169
|
box-shadow: none;
|
|
173
170
|
}
|
|
@@ -324,6 +321,11 @@ ol li ol li ol li {
|
|
|
324
321
|
background-color: var(--color-pzh-gray-200);
|
|
325
322
|
}
|
|
326
323
|
}
|
|
324
|
+
.pzh-form-input--small {
|
|
325
|
+
padding-block: calc(var(--spacing) * 1);
|
|
326
|
+
font-size: var(--text-s);
|
|
327
|
+
line-height: var(--tw-leading, var(--text-s--line-height));
|
|
328
|
+
}
|
|
327
329
|
.pzh-form-error, .pzh-form-checkbox.pzh-form-error + span:before, .pzh-form-radio:checked.pzh-form-error + span:before, .pzh-form-radio:not(:checked).pzh-form-error + span:before {
|
|
328
330
|
border-color: var(--color-pzh-red-500);
|
|
329
331
|
}
|
package/src/tailwind.src.css
CHANGED
|
@@ -10,8 +10,11 @@
|
|
|
10
10
|
--screen-2xl: 1440px;
|
|
11
11
|
|
|
12
12
|
/* Font sizes */
|
|
13
|
+
--text-xs: 0.875rem;
|
|
14
|
+
--text-xs--line-height: 150%;
|
|
15
|
+
|
|
13
16
|
--text-s: 1rem;
|
|
14
|
-
--text-s--line-height:
|
|
17
|
+
--text-s--line-height: 150%;
|
|
15
18
|
|
|
16
19
|
--text-m: 1.25rem;
|
|
17
20
|
--text-m--line-height: 1.875rem;
|
|
@@ -227,6 +230,9 @@ ol li ol li ol li {
|
|
|
227
230
|
.pzh-form-input {
|
|
228
231
|
@apply placeholder-pzh-gray-600 bg-pzh-white text-pzh-blue-900 border-pzh-gray-600 hover:border-pzh-blue-500 focus:ring-pzh-focus focus:border-pzh-focus disabled:bg-pzh-gray-200 text-m block w-full appearance-none rounded border px-4 py-2 leading-[30px] focus:ring-2 focus:outline-none;
|
|
229
232
|
}
|
|
233
|
+
.pzh-form-input--small {
|
|
234
|
+
@apply text-s py-1;
|
|
235
|
+
}
|
|
230
236
|
|
|
231
237
|
.pzh-form-error,
|
|
232
238
|
.pzh-form-checkbox.pzh-form-error + span:before,
|