@pzh-ui/css 0.0.48 → 0.0.51

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 CHANGED
@@ -10,6 +10,7 @@ After installing the dependency, you can start using the styles as follows:
10
10
 
11
11
  ```jsx
12
12
  // tailwind.config.js
13
+
13
14
  module.exports = {
14
15
  presets: [require('@pzh-ui/css/config')],
15
16
  content: [
package/config/index.js CHANGED
@@ -218,6 +218,10 @@ module.exports = {
218
218
  'pzh-white': {
219
219
  DEFAULT: '#FFFFFF',
220
220
  },
221
+ 'pzh-ui': {
222
+ white: '#FFFFFF',
223
+ 'light-blue': '#E5EFF8',
224
+ },
221
225
  },
222
226
  extend: {
223
227
  opacity: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pzh-ui/css",
3
- "version": "0.0.48",
3
+ "version": "0.0.51",
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": "4bc1c4e901e6329d367573f21845ebc2f624d72b",
22
+ "gitHead": "b0a8192cae5196e55e8bea1f289cabe5543c8276",
23
23
  "devDependencies": {
24
24
  "tailwindcss": "^3.0.23"
25
25
  }
package/src/tailwind.css CHANGED
@@ -741,6 +741,10 @@ select {
741
741
  left: 0px;
742
742
  }
743
743
 
744
+ .-bottom-\[6px\] {
745
+ bottom: -6px;
746
+ }
747
+
744
748
  .-left-\[9999px\] {
745
749
  left: -9999px;
746
750
  }
@@ -831,6 +835,10 @@ select {
831
835
  margin-top: 3px;
832
836
  }
833
837
 
838
+ .-mb-\[2px\] {
839
+ margin-bottom: -2px;
840
+ }
841
+
834
842
  .mb-2 {
835
843
  margin-bottom: 0.5rem;
836
844
  }
@@ -975,6 +983,23 @@ select {
975
983
  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
984
  }
977
985
 
986
+ @-webkit-keyframes spin {
987
+ to {
988
+ transform: rotate(360deg);
989
+ }
990
+ }
991
+
992
+ @keyframes spin {
993
+ to {
994
+ transform: rotate(360deg);
995
+ }
996
+ }
997
+
998
+ .animate-spin {
999
+ -webkit-animation: spin 1s linear infinite;
1000
+ animation: spin 1s linear infinite;
1001
+ }
1002
+
978
1003
  .cursor-pointer {
979
1004
  cursor: pointer;
980
1005
  }
@@ -1048,6 +1073,14 @@ select {
1048
1073
  border-bottom-width: 1px;
1049
1074
  }
1050
1075
 
1076
+ .border-b-2 {
1077
+ border-bottom-width: 2px;
1078
+ }
1079
+
1080
+ .border-b-\[3px\] {
1081
+ border-bottom-width: 3px;
1082
+ }
1083
+
1051
1084
  .border-dashed {
1052
1085
  border-style: dashed;
1053
1086
  }
@@ -1087,6 +1120,11 @@ select {
1087
1120
  border-color: rgb(22 17 59 / var(--tw-border-opacity));
1088
1121
  }
1089
1122
 
1123
+ .border-pzh-gray-400 {
1124
+ --tw-border-opacity: 1;
1125
+ border-color: rgb(173 172 186 / var(--tw-border-opacity));
1126
+ }
1127
+
1090
1128
  .border-opacity-35 {
1091
1129
  --tw-border-opacity: 0.35;
1092
1130
  }
@@ -1247,8 +1285,8 @@ select {
1247
1285
  padding-bottom: 9px;
1248
1286
  }
1249
1287
 
1250
- .pt-\[12px\] {
1251
- padding-top: 12px;
1288
+ .pt-\[10px\] {
1289
+ padding-top: 10px;
1252
1290
  }
1253
1291
 
1254
1292
  .pt-0 {
@@ -1425,6 +1463,10 @@ select {
1425
1463
  text-decoration-line: underline;
1426
1464
  }
1427
1465
 
1466
+ .decoration-1 {
1467
+ text-decoration-thickness: 1px;
1468
+ }
1469
+
1428
1470
  .opacity-0 {
1429
1471
  opacity: 0;
1430
1472
  }
@@ -1545,7 +1587,9 @@ h3,
1545
1587
  h4,
1546
1588
  h5,
1547
1589
  h6,
1548
- .font-bold {
1590
+ .font-bold,
1591
+ strong,
1592
+ b {
1549
1593
  font-family: 'Karbon Medium', sans-serif;
1550
1594
  font-weight: 700;
1551
1595
  }
@@ -2021,6 +2065,11 @@ h6,
2021
2065
  color: rgb(22 17 59 / var(--tw-text-opacity));
2022
2066
  }
2023
2067
 
2068
+ .hover\:text-pzh-green:hover {
2069
+ --tw-text-opacity: 1;
2070
+ color: rgb(0 128 77 / var(--tw-text-opacity));
2071
+ }
2072
+
2024
2073
  .hover\:text-pzh-blue:hover {
2025
2074
  --tw-text-opacity: 1;
2026
2075
  color: rgb(40 31 107 / var(--tw-text-opacity));
@@ -2031,11 +2080,6 @@ h6,
2031
2080
  color: rgb(255 255 255 / var(--tw-text-opacity));
2032
2081
  }
2033
2082
 
2034
- .hover\:text-pzh-green:hover {
2035
- --tw-text-opacity: 1;
2036
- color: rgb(0 128 77 / var(--tw-text-opacity));
2037
- }
2038
-
2039
2083
  .hover\:underline:hover {
2040
2084
  -webkit-text-decoration-line: underline;
2041
2085
  text-decoration-line: underline;
@@ -38,7 +38,9 @@ h3,
38
38
  h4,
39
39
  h5,
40
40
  h6,
41
- .font-bold {
41
+ .font-bold,
42
+ strong,
43
+ b {
42
44
  font-family: 'Karbon Medium', sans-serif;
43
45
  font-weight: 700;
44
46
  }