@pzh-ui/css 0.0.116 → 0.0.118
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 +2 -2
- package/src/tailwind.css +5 -0
- package/src/tailwind.src.css +3 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pzh-ui/css",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.118",
|
|
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": "e5a775522200086a33ef1a8c8fa16b976afbbc71",
|
|
21
21
|
"devDependencies": {
|
|
22
22
|
"@tailwindcss/cli": "^4.1.4",
|
|
23
23
|
"tailwindcss": "^4.1.4"
|
package/src/tailwind.css
CHANGED
|
@@ -324,6 +324,11 @@ ol li ol li ol li {
|
|
|
324
324
|
background-color: var(--color-pzh-gray-200);
|
|
325
325
|
}
|
|
326
326
|
}
|
|
327
|
+
.pzh-form-input--small {
|
|
328
|
+
padding-block: calc(var(--spacing) * 1);
|
|
329
|
+
font-size: var(--text-s);
|
|
330
|
+
line-height: var(--tw-leading, var(--text-s--line-height));
|
|
331
|
+
}
|
|
327
332
|
.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
333
|
border-color: var(--color-pzh-red-500);
|
|
329
334
|
}
|
package/src/tailwind.src.css
CHANGED
|
@@ -227,6 +227,9 @@ ol li ol li ol li {
|
|
|
227
227
|
.pzh-form-input {
|
|
228
228
|
@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
229
|
}
|
|
230
|
+
.pzh-form-input--small {
|
|
231
|
+
@apply text-s py-1;
|
|
232
|
+
}
|
|
230
233
|
|
|
231
234
|
.pzh-form-error,
|
|
232
235
|
.pzh-form-checkbox.pzh-form-error + span:before,
|