@pzh-ui/css 0.0.41 → 0.0.42
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 +10 -0
- package/src/tailwind.src.css +6 -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.42",
|
|
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": "e361552eea07a46cda1401f56aaafefd63d5084d",
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"tailwindcss": "^3.0.23"
|
|
25
25
|
}
|
package/src/tailwind.css
CHANGED
|
@@ -1009,6 +1009,10 @@ select{
|
|
|
1009
1009
|
overflow-y: auto;
|
|
1010
1010
|
}
|
|
1011
1011
|
|
|
1012
|
+
.overflow-y-visible{
|
|
1013
|
+
overflow-y: visible;
|
|
1014
|
+
}
|
|
1015
|
+
|
|
1012
1016
|
.break-words{
|
|
1013
1017
|
overflow-wrap: break-word;
|
|
1014
1018
|
}
|
|
@@ -1946,6 +1950,12 @@ h6,
|
|
|
1946
1950
|
0px 1.19702px 3.99006px rgba(0, 0, 0, 0.0282725);
|
|
1947
1951
|
}
|
|
1948
1952
|
|
|
1953
|
+
.pzh-select-input {
|
|
1954
|
+
input {
|
|
1955
|
+
box-shadow: none;
|
|
1956
|
+
}
|
|
1957
|
+
}
|
|
1958
|
+
|
|
1949
1959
|
.hover\:translate-y-0:hover{
|
|
1950
1960
|
--tw-translate-y: 0px;
|
|
1951
1961
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
package/src/tailwind.src.css
CHANGED