@pzh-ui/css 0.0.32 → 0.0.35
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/README.md +1 -1
- package/config/index.js +1 -0
- package/package.json +2 -2
- package/src/tailwind.css +49 -12
- package/src/tailwind.src.css +1 -1
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@ This package contains default styling for projects whitin Provincie Zuid-Holland
|
|
|
4
4
|
|
|
5
5
|
We use the [Tailwind framework](https://tailwindcss.com/) to style the components. In order to apply the correct styles, install [@pzh-ui/css](https://www.npmjs.com/package/@pzh-ui/css) in your project.
|
|
6
6
|
|
|
7
|
-
`
|
|
7
|
+
`yarn add @pzh-ui/css`
|
|
8
8
|
|
|
9
9
|
After installing the dependency, you can start using the styles as follows:
|
|
10
10
|
|
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.35",
|
|
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": "9776a99c5f9dd48d56c9fed1ce7fa52290ac39ac",
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"tailwindcss": "^3.0.23"
|
|
25
25
|
}
|
package/src/tailwind.css
CHANGED
|
@@ -755,6 +755,10 @@ select{
|
|
|
755
755
|
top: 14px;
|
|
756
756
|
}
|
|
757
757
|
|
|
758
|
+
.right-3{
|
|
759
|
+
right: 0.75rem;
|
|
760
|
+
}
|
|
761
|
+
|
|
758
762
|
.z-10{
|
|
759
763
|
z-index: 10;
|
|
760
764
|
}
|
|
@@ -781,14 +785,14 @@ select{
|
|
|
781
785
|
margin-right: 0.5rem;
|
|
782
786
|
}
|
|
783
787
|
|
|
784
|
-
.ml-2{
|
|
785
|
-
margin-left: 0.5rem;
|
|
786
|
-
}
|
|
787
|
-
|
|
788
788
|
.-mt-\[2px\]{
|
|
789
789
|
margin-top: -2px;
|
|
790
790
|
}
|
|
791
791
|
|
|
792
|
+
.ml-2{
|
|
793
|
+
margin-left: 0.5rem;
|
|
794
|
+
}
|
|
795
|
+
|
|
792
796
|
.-mt-0\.5{
|
|
793
797
|
margin-top: -0.125rem;
|
|
794
798
|
}
|
|
@@ -845,6 +849,10 @@ select{
|
|
|
845
849
|
display: flex;
|
|
846
850
|
}
|
|
847
851
|
|
|
852
|
+
.table{
|
|
853
|
+
display: table;
|
|
854
|
+
}
|
|
855
|
+
|
|
848
856
|
.contents{
|
|
849
857
|
display: contents;
|
|
850
858
|
}
|
|
@@ -881,6 +889,10 @@ select{
|
|
|
881
889
|
height: 1rem;
|
|
882
890
|
}
|
|
883
891
|
|
|
892
|
+
.h-8{
|
|
893
|
+
height: 2rem;
|
|
894
|
+
}
|
|
895
|
+
|
|
884
896
|
.min-h-screen{
|
|
885
897
|
min-height: 100vh;
|
|
886
898
|
}
|
|
@@ -940,6 +952,10 @@ select{
|
|
|
940
952
|
cursor: pointer;
|
|
941
953
|
}
|
|
942
954
|
|
|
955
|
+
.resize-none{
|
|
956
|
+
resize: none;
|
|
957
|
+
}
|
|
958
|
+
|
|
943
959
|
.items-start{
|
|
944
960
|
align-items: flex-start;
|
|
945
961
|
}
|
|
@@ -980,6 +996,10 @@ select{
|
|
|
980
996
|
border-radius: 0.375rem;
|
|
981
997
|
}
|
|
982
998
|
|
|
999
|
+
.rounded-full{
|
|
1000
|
+
border-radius: 9999px;
|
|
1001
|
+
}
|
|
1002
|
+
|
|
983
1003
|
.rounded-\[4px\]{
|
|
984
1004
|
border-radius: 4px;
|
|
985
1005
|
}
|
|
@@ -993,6 +1013,10 @@ select{
|
|
|
993
1013
|
border-width: 1px;
|
|
994
1014
|
}
|
|
995
1015
|
|
|
1016
|
+
.border-b{
|
|
1017
|
+
border-bottom-width: 1px;
|
|
1018
|
+
}
|
|
1019
|
+
|
|
996
1020
|
.border-dashed{
|
|
997
1021
|
border-style: dashed;
|
|
998
1022
|
}
|
|
@@ -1281,6 +1305,11 @@ select{
|
|
|
1281
1305
|
line-height: 1;
|
|
1282
1306
|
}
|
|
1283
1307
|
|
|
1308
|
+
.text-pzh-blue-dark{
|
|
1309
|
+
--tw-text-opacity: 1;
|
|
1310
|
+
color: rgb(22 17 59 / var(--tw-text-opacity));
|
|
1311
|
+
}
|
|
1312
|
+
|
|
1284
1313
|
.text-pzh-badge-green{
|
|
1285
1314
|
--tw-text-opacity: 1;
|
|
1286
1315
|
color: rgb(80 166 88 / var(--tw-text-opacity));
|
|
@@ -1316,11 +1345,6 @@ select{
|
|
|
1316
1345
|
color: rgb(209 31 61 / var(--tw-text-opacity));
|
|
1317
1346
|
}
|
|
1318
1347
|
|
|
1319
|
-
.text-pzh-blue-dark{
|
|
1320
|
-
--tw-text-opacity: 1;
|
|
1321
|
-
color: rgb(22 17 59 / var(--tw-text-opacity));
|
|
1322
|
-
}
|
|
1323
|
-
|
|
1324
1348
|
.text-pzh-green{
|
|
1325
1349
|
--tw-text-opacity: 1;
|
|
1326
1350
|
color: rgb(0 128 77 / var(--tw-text-opacity));
|
|
@@ -1525,9 +1549,9 @@ h6,
|
|
|
1525
1549
|
border-width: 1px;
|
|
1526
1550
|
border-color: rgb(22 17 59 / var(--tw-border-opacity));
|
|
1527
1551
|
--tw-border-opacity: 0.35;
|
|
1528
|
-
padding-top:
|
|
1529
|
-
padding-bottom:
|
|
1530
|
-
line-height:
|
|
1552
|
+
padding-top: 10px;
|
|
1553
|
+
padding-bottom: 6px;
|
|
1554
|
+
line-height: 30px;
|
|
1531
1555
|
--tw-text-opacity: 1;
|
|
1532
1556
|
color: rgb(22 17 59 / var(--tw-text-opacity));
|
|
1533
1557
|
}
|
|
@@ -1899,6 +1923,11 @@ h6,
|
|
|
1899
1923
|
background-color: rgb(0 77 46 / var(--tw-bg-opacity));
|
|
1900
1924
|
}
|
|
1901
1925
|
|
|
1926
|
+
.hover\:bg-pzh-gray-light:hover{
|
|
1927
|
+
--tw-bg-opacity: 1;
|
|
1928
|
+
background-color: rgb(245 245 245 / var(--tw-bg-opacity));
|
|
1929
|
+
}
|
|
1930
|
+
|
|
1902
1931
|
.hover\:bg-opacity-10:hover{
|
|
1903
1932
|
--tw-bg-opacity: 0.1;
|
|
1904
1933
|
}
|
|
@@ -2054,6 +2083,14 @@ h6,
|
|
|
2054
2083
|
margin-left: 1rem;
|
|
2055
2084
|
}
|
|
2056
2085
|
|
|
2086
|
+
.md\:flex{
|
|
2087
|
+
display: flex;
|
|
2088
|
+
}
|
|
2089
|
+
|
|
2090
|
+
.md\:hidden{
|
|
2091
|
+
display: none;
|
|
2092
|
+
}
|
|
2093
|
+
|
|
2057
2094
|
.md\:p-4{
|
|
2058
2095
|
padding: 1rem;
|
|
2059
2096
|
}
|
package/src/tailwind.src.css
CHANGED
|
@@ -62,7 +62,7 @@ h6,
|
|
|
62
62
|
}
|
|
63
63
|
|
|
64
64
|
.pzh-form-input {
|
|
65
|
-
@apply block w-full pt-[
|
|
65
|
+
@apply block w-full pt-[10px] pb-[6px] leading-[30px] placeholder-pzh-blue-dark placeholder-opacity-55 text-pzh-blue-dark border border-pzh-blue-dark border-opacity-35 rounded appearance-none focus:outline-none hover:border-gray-500 focus:border-pzh-blue-light disabled:border-pzh-blue-dark disabled:border-opacity-10 disabled:bg-pzh-gray disabled:text-opacity-55;
|
|
66
66
|
}
|
|
67
67
|
|
|
68
68
|
.pzh-form-error,
|