@pzh-ui/css 0.0.54 → 0.0.56
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/config/index.js +6 -0
- package/package.json +2 -2
- package/src/tailwind.css +28 -4
- package/src/tailwind.src.css +1 -1
package/config/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pzh-ui/css",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.56",
|
|
4
4
|
"description": "Contains default styling for projects whitin Provincie Zuid-Holland.",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"publishConfig": {
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"@tailwindcss/typography": "^0.5.9",
|
|
21
21
|
"react-datepicker": "^4.7.0"
|
|
22
22
|
},
|
|
23
|
-
"gitHead": "
|
|
23
|
+
"gitHead": "40d24c5b984414a4c0a4070da5aa94fdae9500c0",
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"tailwindcss": "^3.0.23"
|
|
26
26
|
}
|
package/src/tailwind.css
CHANGED
|
@@ -1054,6 +1054,14 @@ select {
|
|
|
1054
1054
|
margin: 0;
|
|
1055
1055
|
}
|
|
1056
1056
|
|
|
1057
|
+
.prose :where(li):not(:where([class~="not-prose"] *))>ol {
|
|
1058
|
+
margin: 0;
|
|
1059
|
+
}
|
|
1060
|
+
|
|
1061
|
+
.prose :where(li):not(:where([class~="not-prose"] *))>ul {
|
|
1062
|
+
margin: 0;
|
|
1063
|
+
}
|
|
1064
|
+
|
|
1057
1065
|
.prose :where(ol > li):not(:where([class~="not-prose"] *)) {
|
|
1058
1066
|
padding-left: 0.375em;
|
|
1059
1067
|
}
|
|
@@ -1274,6 +1282,10 @@ select {
|
|
|
1274
1282
|
margin: 0px;
|
|
1275
1283
|
}
|
|
1276
1284
|
|
|
1285
|
+
.m-0\.5 {
|
|
1286
|
+
margin: 0.125rem;
|
|
1287
|
+
}
|
|
1288
|
+
|
|
1277
1289
|
.mx-auto {
|
|
1278
1290
|
margin-left: auto;
|
|
1279
1291
|
margin-right: auto;
|
|
@@ -1432,6 +1444,10 @@ select {
|
|
|
1432
1444
|
height: 8px;
|
|
1433
1445
|
}
|
|
1434
1446
|
|
|
1447
|
+
.h-7 {
|
|
1448
|
+
height: 1.75rem;
|
|
1449
|
+
}
|
|
1450
|
+
|
|
1435
1451
|
.min-h-screen {
|
|
1436
1452
|
min-height: 100vh;
|
|
1437
1453
|
}
|
|
@@ -1460,8 +1476,8 @@ select {
|
|
|
1460
1476
|
width: 8px;
|
|
1461
1477
|
}
|
|
1462
1478
|
|
|
1463
|
-
.w-
|
|
1464
|
-
width:
|
|
1479
|
+
.w-7 {
|
|
1480
|
+
width: 1.75rem;
|
|
1465
1481
|
}
|
|
1466
1482
|
|
|
1467
1483
|
.max-w-screen-xl {
|
|
@@ -2068,6 +2084,11 @@ select {
|
|
|
2068
2084
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2069
2085
|
}
|
|
2070
2086
|
|
|
2087
|
+
.outline-none {
|
|
2088
|
+
outline: 2px solid transparent;
|
|
2089
|
+
outline-offset: 2px;
|
|
2090
|
+
}
|
|
2091
|
+
|
|
2071
2092
|
.blur {
|
|
2072
2093
|
--tw-blur: blur(8px);
|
|
2073
2094
|
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
@@ -2197,8 +2218,6 @@ b {
|
|
|
2197
2218
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2198
2219
|
transition-duration: 200ms;
|
|
2199
2220
|
transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
|
|
2200
|
-
font-family: 'Karbon Medium', sans-serif;
|
|
2201
|
-
font-weight: 700;
|
|
2202
2221
|
}
|
|
2203
2222
|
|
|
2204
2223
|
.pzh-button:focus {
|
|
@@ -2724,6 +2743,11 @@ b {
|
|
|
2724
2743
|
opacity: 1;
|
|
2725
2744
|
}
|
|
2726
2745
|
|
|
2746
|
+
.prose-li\:my-0 :is(:where(li):not(:where([class~="not-prose"] *))) {
|
|
2747
|
+
margin-top: 0px;
|
|
2748
|
+
margin-bottom: 0px;
|
|
2749
|
+
}
|
|
2750
|
+
|
|
2727
2751
|
@media (min-width: 640px) {
|
|
2728
2752
|
.sm\:my-8 {
|
|
2729
2753
|
margin-top: 2rem;
|
package/src/tailwind.src.css
CHANGED
|
@@ -58,7 +58,7 @@ b {
|
|
|
58
58
|
*/
|
|
59
59
|
|
|
60
60
|
.pzh-button {
|
|
61
|
-
@apply inline-block transition duration-200 ease-in rounded focus:outline-none focus:ring
|
|
61
|
+
@apply inline-block transition duration-200 ease-in rounded focus:outline-none focus:ring leading-none disabled:bg-pzh-gray-200 disabled:text-pzh-blue-dark disabled:text-opacity-35 disabled:cursor-not-allowed;
|
|
62
62
|
}
|
|
63
63
|
|
|
64
64
|
.pzh-form-input {
|