@pzh-ui/css 0.0.48 → 0.0.49
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 +20 -1
- package/src/tailwind.src.css +3 -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.49",
|
|
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": "0ffe2bf1063ddb5bda0deba29901b54bdb79d679",
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"tailwindcss": "^3.0.23"
|
|
25
25
|
}
|
package/src/tailwind.css
CHANGED
|
@@ -975,6 +975,23 @@ select {
|
|
|
975
975
|
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));
|
|
976
976
|
}
|
|
977
977
|
|
|
978
|
+
@-webkit-keyframes spin {
|
|
979
|
+
to {
|
|
980
|
+
transform: rotate(360deg);
|
|
981
|
+
}
|
|
982
|
+
}
|
|
983
|
+
|
|
984
|
+
@keyframes spin {
|
|
985
|
+
to {
|
|
986
|
+
transform: rotate(360deg);
|
|
987
|
+
}
|
|
988
|
+
}
|
|
989
|
+
|
|
990
|
+
.animate-spin {
|
|
991
|
+
-webkit-animation: spin 1s linear infinite;
|
|
992
|
+
animation: spin 1s linear infinite;
|
|
993
|
+
}
|
|
994
|
+
|
|
978
995
|
.cursor-pointer {
|
|
979
996
|
cursor: pointer;
|
|
980
997
|
}
|
|
@@ -1545,7 +1562,9 @@ h3,
|
|
|
1545
1562
|
h4,
|
|
1546
1563
|
h5,
|
|
1547
1564
|
h6,
|
|
1548
|
-
.font-bold
|
|
1565
|
+
.font-bold,
|
|
1566
|
+
strong,
|
|
1567
|
+
b {
|
|
1549
1568
|
font-family: 'Karbon Medium', sans-serif;
|
|
1550
1569
|
font-weight: 700;
|
|
1551
1570
|
}
|