@pzh-ui/css 0.0.107 → 0.0.108
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 +3 -9
- package/src/tailwind.src.css +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pzh-ui/css",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.108",
|
|
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": "a66047172a9d56b8063b9667237bae770883ce27",
|
|
21
21
|
"devDependencies": {
|
|
22
22
|
"@tailwindcss/cli": "^4.1.4",
|
|
23
23
|
"tailwindcss": "^4.1.4"
|
package/src/tailwind.css
CHANGED
|
@@ -808,9 +808,6 @@
|
|
|
808
808
|
.mt-3 {
|
|
809
809
|
margin-top: calc(var(--spacing) * 3);
|
|
810
810
|
}
|
|
811
|
-
.mt-4 {
|
|
812
|
-
margin-top: calc(var(--spacing) * 4);
|
|
813
|
-
}
|
|
814
811
|
.mt-6 {
|
|
815
812
|
margin-top: calc(var(--spacing) * 6);
|
|
816
813
|
}
|
|
@@ -838,9 +835,6 @@
|
|
|
838
835
|
.mb-8 {
|
|
839
836
|
margin-bottom: calc(var(--spacing) * 8);
|
|
840
837
|
}
|
|
841
|
-
.mb-\[1000px\] {
|
|
842
|
-
margin-bottom: 1000px;
|
|
843
|
-
}
|
|
844
838
|
.ml-0 {
|
|
845
839
|
margin-left: calc(var(--spacing) * 0);
|
|
846
840
|
}
|
|
@@ -1263,9 +1257,6 @@
|
|
|
1263
1257
|
.py-6 {
|
|
1264
1258
|
padding-block: calc(var(--spacing) * 6);
|
|
1265
1259
|
}
|
|
1266
|
-
.py-24 {
|
|
1267
|
-
padding-block: calc(var(--spacing) * 24);
|
|
1268
|
-
}
|
|
1269
1260
|
.pt-0 {
|
|
1270
1261
|
padding-top: calc(var(--spacing) * 0);
|
|
1271
1262
|
}
|
|
@@ -1510,6 +1501,9 @@
|
|
|
1510
1501
|
--tw-blur: blur(8px);
|
|
1511
1502
|
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,);
|
|
1512
1503
|
}
|
|
1504
|
+
.filter {
|
|
1505
|
+
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,);
|
|
1506
|
+
}
|
|
1513
1507
|
.transition {
|
|
1514
1508
|
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter;
|
|
1515
1509
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
package/src/tailwind.src.css
CHANGED