@pzh-ui/css 0.0.26 → 0.0.29
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 +3 -0
- package/package.json +2 -2
- package/src/tailwind.css +62 -6
- package/src/tailwind.src.css +10 -2
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.29",
|
|
4
4
|
"description": "Contains default styling for projects whitin Provincie Zuid-Holland.",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"publishConfig": {
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"@tailwindcss/line-clamp": "^0.3.1",
|
|
20
20
|
"react-datepicker": "^4.7.0"
|
|
21
21
|
},
|
|
22
|
-
"gitHead": "
|
|
22
|
+
"gitHead": "d46f0a0c8b2b65664dd3615ec648108bf6ae0e7f",
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"tailwindcss": "^3.0.23"
|
|
25
25
|
}
|
package/src/tailwind.css
CHANGED
|
@@ -723,6 +723,18 @@ select{
|
|
|
723
723
|
right: 0px;
|
|
724
724
|
}
|
|
725
725
|
|
|
726
|
+
.top-0{
|
|
727
|
+
top: 0px;
|
|
728
|
+
}
|
|
729
|
+
|
|
730
|
+
.top-\[192px\]{
|
|
731
|
+
top: 192px;
|
|
732
|
+
}
|
|
733
|
+
|
|
734
|
+
.top-\[288px\]{
|
|
735
|
+
top: 288px;
|
|
736
|
+
}
|
|
737
|
+
|
|
726
738
|
.bottom-0{
|
|
727
739
|
bottom: 0px;
|
|
728
740
|
}
|
|
@@ -731,10 +743,6 @@ select{
|
|
|
731
743
|
left: 0px;
|
|
732
744
|
}
|
|
733
745
|
|
|
734
|
-
.top-0{
|
|
735
|
-
top: 0px;
|
|
736
|
-
}
|
|
737
|
-
|
|
738
746
|
.-left-\[9999px\]{
|
|
739
747
|
left: -9999px;
|
|
740
748
|
}
|
|
@@ -764,6 +772,11 @@ select{
|
|
|
764
772
|
margin-right: auto;
|
|
765
773
|
}
|
|
766
774
|
|
|
775
|
+
.my-2{
|
|
776
|
+
margin-top: 0.5rem;
|
|
777
|
+
margin-bottom: 0.5rem;
|
|
778
|
+
}
|
|
779
|
+
|
|
767
780
|
.mr-2{
|
|
768
781
|
margin-right: 0.5rem;
|
|
769
782
|
}
|
|
@@ -852,6 +865,14 @@ select{
|
|
|
852
865
|
height: 36px;
|
|
853
866
|
}
|
|
854
867
|
|
|
868
|
+
.h-\[96px\]{
|
|
869
|
+
height: 96px;
|
|
870
|
+
}
|
|
871
|
+
|
|
872
|
+
.h-px{
|
|
873
|
+
height: 1px;
|
|
874
|
+
}
|
|
875
|
+
|
|
855
876
|
.h-4{
|
|
856
877
|
height: 1rem;
|
|
857
878
|
}
|
|
@@ -868,6 +889,10 @@ select{
|
|
|
868
889
|
width: 1.5rem;
|
|
869
890
|
}
|
|
870
891
|
|
|
892
|
+
.w-\[96px\]{
|
|
893
|
+
width: 96px;
|
|
894
|
+
}
|
|
895
|
+
|
|
871
896
|
.w-full{
|
|
872
897
|
width: 100%;
|
|
873
898
|
}
|
|
@@ -1021,6 +1046,11 @@ select{
|
|
|
1021
1046
|
background-color: rgb(0 128 77 / var(--tw-bg-opacity));
|
|
1022
1047
|
}
|
|
1023
1048
|
|
|
1049
|
+
.bg-pzh-cool-gray-light{
|
|
1050
|
+
--tw-bg-opacity: 1;
|
|
1051
|
+
background-color: rgb(191 191 191 / var(--tw-bg-opacity));
|
|
1052
|
+
}
|
|
1053
|
+
|
|
1024
1054
|
.bg-pzh-cool-gray-dark{
|
|
1025
1055
|
--tw-bg-opacity: 1;
|
|
1026
1056
|
background-color: rgb(92 92 92 / var(--tw-bg-opacity));
|
|
@@ -1218,6 +1248,10 @@ select{
|
|
|
1218
1248
|
font-style: italic;
|
|
1219
1249
|
}
|
|
1220
1250
|
|
|
1251
|
+
.leading-\[30px\]{
|
|
1252
|
+
line-height: 30px;
|
|
1253
|
+
}
|
|
1254
|
+
|
|
1221
1255
|
.leading-normal{
|
|
1222
1256
|
line-height: 1.5;
|
|
1223
1257
|
}
|
|
@@ -1418,8 +1452,13 @@ h6,
|
|
|
1418
1452
|
font-weight: 700;
|
|
1419
1453
|
}
|
|
1420
1454
|
|
|
1421
|
-
.
|
|
1422
|
-
|
|
1455
|
+
.pzh-transition-colors{
|
|
1456
|
+
transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
|
|
1457
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
|
|
1458
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
|
|
1459
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1460
|
+
transition-duration: 200ms;
|
|
1461
|
+
transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
|
|
1423
1462
|
}
|
|
1424
1463
|
|
|
1425
1464
|
/*
|
|
@@ -1604,6 +1643,23 @@ h6,
|
|
|
1604
1643
|
content: url("data:image/svg+xml; utf8, <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'><path fill='rgba(22, 17, 59, 0.35)' 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>");
|
|
1605
1644
|
}
|
|
1606
1645
|
|
|
1646
|
+
.form-field-label{
|
|
1647
|
+
margin-bottom: 0.5rem;
|
|
1648
|
+
display: block;
|
|
1649
|
+
font-size: 0.75rem;
|
|
1650
|
+
text-transform: uppercase;
|
|
1651
|
+
letter-spacing: 0.025em;
|
|
1652
|
+
--tw-text-opacity: 1;
|
|
1653
|
+
color: rgb(74 85 104 / var(--tw-text-opacity));
|
|
1654
|
+
}
|
|
1655
|
+
|
|
1656
|
+
.form-field-description{
|
|
1657
|
+
margin-bottom: 0.5rem;
|
|
1658
|
+
font-size: 0.875rem;
|
|
1659
|
+
--tw-text-opacity: 1;
|
|
1660
|
+
color: rgb(74 85 104 / var(--tw-text-opacity));
|
|
1661
|
+
}
|
|
1662
|
+
|
|
1607
1663
|
/*
|
|
1608
1664
|
* React Datepicker
|
|
1609
1665
|
*/
|
package/src/tailwind.src.css
CHANGED
|
@@ -49,8 +49,8 @@ h6,
|
|
|
49
49
|
font-weight: 700;
|
|
50
50
|
}
|
|
51
51
|
|
|
52
|
-
.
|
|
53
|
-
|
|
52
|
+
.pzh-transition-colors {
|
|
53
|
+
@apply transition-colors duration-200 ease-in;
|
|
54
54
|
}
|
|
55
55
|
|
|
56
56
|
/*
|
|
@@ -109,6 +109,14 @@ h6,
|
|
|
109
109
|
content: url("data:image/svg+xml; utf8, <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'><path fill='rgba(22, 17, 59, 0.35)' 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>");
|
|
110
110
|
}
|
|
111
111
|
|
|
112
|
+
.form-field-label {
|
|
113
|
+
@apply block mb-2 text-xs tracking-wide text-gray-700 uppercase;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.form-field-description {
|
|
117
|
+
@apply mb-2 text-sm text-gray-700;
|
|
118
|
+
}
|
|
119
|
+
|
|
112
120
|
/*
|
|
113
121
|
* React Datepicker
|
|
114
122
|
*/
|