@pzh-ui/css 0.0.49 → 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.49",
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": "0ffe2bf1063ddb5bda0deba29901b54bdb79d679",
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
  }
@@ -1065,6 +1073,14 @@ select {
1065
1073
  border-bottom-width: 1px;
1066
1074
  }
1067
1075
 
1076
+ .border-b-2 {
1077
+ border-bottom-width: 2px;
1078
+ }
1079
+
1080
+ .border-b-\[3px\] {
1081
+ border-bottom-width: 3px;
1082
+ }
1083
+
1068
1084
  .border-dashed {
1069
1085
  border-style: dashed;
1070
1086
  }
@@ -1104,6 +1120,11 @@ select {
1104
1120
  border-color: rgb(22 17 59 / var(--tw-border-opacity));
1105
1121
  }
1106
1122
 
1123
+ .border-pzh-gray-400 {
1124
+ --tw-border-opacity: 1;
1125
+ border-color: rgb(173 172 186 / var(--tw-border-opacity));
1126
+ }
1127
+
1107
1128
  .border-opacity-35 {
1108
1129
  --tw-border-opacity: 0.35;
1109
1130
  }
@@ -1264,8 +1285,8 @@ select {
1264
1285
  padding-bottom: 9px;
1265
1286
  }
1266
1287
 
1267
- .pt-\[12px\] {
1268
- padding-top: 12px;
1288
+ .pt-\[10px\] {
1289
+ padding-top: 10px;
1269
1290
  }
1270
1291
 
1271
1292
  .pt-0 {
@@ -1442,6 +1463,10 @@ select {
1442
1463
  text-decoration-line: underline;
1443
1464
  }
1444
1465
 
1466
+ .decoration-1 {
1467
+ text-decoration-thickness: 1px;
1468
+ }
1469
+
1445
1470
  .opacity-0 {
1446
1471
  opacity: 0;
1447
1472
  }
@@ -2040,6 +2065,11 @@ b {
2040
2065
  color: rgb(22 17 59 / var(--tw-text-opacity));
2041
2066
  }
2042
2067
 
2068
+ .hover\:text-pzh-green:hover {
2069
+ --tw-text-opacity: 1;
2070
+ color: rgb(0 128 77 / var(--tw-text-opacity));
2071
+ }
2072
+
2043
2073
  .hover\:text-pzh-blue:hover {
2044
2074
  --tw-text-opacity: 1;
2045
2075
  color: rgb(40 31 107 / var(--tw-text-opacity));
@@ -2050,11 +2080,6 @@ b {
2050
2080
  color: rgb(255 255 255 / var(--tw-text-opacity));
2051
2081
  }
2052
2082
 
2053
- .hover\:text-pzh-green:hover {
2054
- --tw-text-opacity: 1;
2055
- color: rgb(0 128 77 / var(--tw-text-opacity));
2056
- }
2057
-
2058
2083
  .hover\:underline:hover {
2059
2084
  -webkit-text-decoration-line: underline;
2060
2085
  text-decoration-line: underline;