@pzh-ui/css 0.0.71 → 0.0.72

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pzh-ui/css",
3
- "version": "0.0.71",
3
+ "version": "0.0.72",
4
4
  "description": "Contains default styling for projects whitin Provincie Zuid-Holland.",
5
5
  "license": "ISC",
6
6
  "publishConfig": {
@@ -21,7 +21,7 @@
21
21
  "react-datepicker": "^4.7.0",
22
22
  "react-toastify": "^9.1.2"
23
23
  },
24
- "gitHead": "a335068588e469ce0060f006d887215bd9af43a7",
24
+ "gitHead": "3b4fa9fa4c4a2f44e9ae19afb41a701b7eb9ab2f",
25
25
  "devDependencies": {
26
26
  "tailwindcss": "^3.3.2"
27
27
  }
package/src/tailwind.css CHANGED
@@ -1443,8 +1443,7 @@ select {
1443
1443
  font-family: 'Karbon Regular', sans-serif;
1444
1444
  font-weight: 400;
1445
1445
  font-size: 0.8rem;
1446
- box-shadow:
1447
- 0px 18px 60px rgba(0, 0, 0, 0.07),
1446
+ box-shadow: 0px 18px 60px rgba(0, 0, 0, 0.07),
1448
1447
  0px 4.02054px 13.4018px rgba(0, 0, 0, 0.0417275),
1449
1448
  0px 1.19702px 3.99006px rgba(0, 0, 0, 0.0282725);
1450
1449
  border-style: none;
@@ -1752,6 +1751,10 @@ select {
1752
1751
  margin-bottom: 0.5rem;
1753
1752
  }
1754
1753
 
1754
+ .mb-8 {
1755
+ margin-bottom: 2rem;
1756
+ }
1757
+
1755
1758
  .mb-\[1000px\] {
1756
1759
  margin-bottom: 1000px;
1757
1760
  }
@@ -1860,10 +1863,6 @@ select {
1860
1863
  height: 1.5rem;
1861
1864
  }
1862
1865
 
1863
- .h-7 {
1864
- height: 1.75rem;
1865
- }
1866
-
1867
1866
  .h-8 {
1868
1867
  height: 2rem;
1869
1868
  }
@@ -2014,6 +2013,16 @@ select {
2014
2013
  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));
2015
2014
  }
2016
2015
 
2016
+ @keyframes pulse {
2017
+ 50% {
2018
+ opacity: .5;
2019
+ }
2020
+ }
2021
+
2022
+ .animate-pulse {
2023
+ animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
2024
+ }
2025
+
2017
2026
  @keyframes spin {
2018
2027
  to {
2019
2028
  transform: rotate(360deg);
@@ -2032,6 +2041,12 @@ select {
2032
2041
  cursor: pointer;
2033
2042
  }
2034
2043
 
2044
+ .select-none {
2045
+ -webkit-user-select: none;
2046
+ -moz-user-select: none;
2047
+ user-select: none;
2048
+ }
2049
+
2035
2050
  .resize-none {
2036
2051
  resize: none;
2037
2052
  }
@@ -2135,6 +2150,11 @@ select {
2135
2150
  border-radius: 0.375rem;
2136
2151
  }
2137
2152
 
2153
+ .rounded-t {
2154
+ border-top-left-radius: 0.25rem;
2155
+ border-top-right-radius: 0.25rem;
2156
+ }
2157
+
2138
2158
  .rounded-t-md {
2139
2159
  border-top-left-radius: 0.375rem;
2140
2160
  border-top-right-radius: 0.375rem;
@@ -2273,6 +2293,10 @@ select {
2273
2293
  background-color: rgb(213 213 213 / var(--tw-bg-opacity));
2274
2294
  }
2275
2295
 
2296
+ .bg-pzh-gray-800\/10 {
2297
+ background-color: rgb(34 34 34 / 0.1);
2298
+ }
2299
+
2276
2300
  .bg-pzh-green {
2277
2301
  --tw-bg-opacity: 1;
2278
2302
  background-color: rgb(0 128 77 / var(--tw-bg-opacity));
@@ -2355,16 +2379,6 @@ select {
2355
2379
  padding-bottom: 0px !important;
2356
2380
  }
2357
2381
 
2358
- .px-1 {
2359
- padding-left: 0.25rem;
2360
- padding-right: 0.25rem;
2361
- }
2362
-
2363
- .px-1\.5 {
2364
- padding-left: 0.375rem;
2365
- padding-right: 0.375rem;
2366
- }
2367
-
2368
2382
  .px-2 {
2369
2383
  padding-left: 0.5rem;
2370
2384
  padding-right: 0.5rem;
@@ -2472,6 +2486,10 @@ select {
2472
2486
  padding-top: 15px;
2473
2487
  }
2474
2488
 
2489
+ .pt-px {
2490
+ padding-top: 1px;
2491
+ }
2492
+
2475
2493
  .text-left {
2476
2494
  text-align: left;
2477
2495
  }
@@ -2829,6 +2847,22 @@ b {
2829
2847
  font-family: 'Karbon Medium', sans-serif;
2830
2848
  }
2831
2849
 
2850
+ ul li ul li {
2851
+ list-style-type: circle;
2852
+ }
2853
+
2854
+ ul li ul li ul li {
2855
+ list-style-type: square;
2856
+ }
2857
+
2858
+ ol li ol li {
2859
+ list-style-type: lower-alpha;
2860
+ }
2861
+
2862
+ ol li ol li ol li {
2863
+ list-style-type: lower-roman;
2864
+ }
2865
+
2832
2866
  .font-normal {
2833
2867
  font-family: 'Karbon Regular', sans-serif;
2834
2868
  }
@@ -3001,6 +3035,10 @@ b {
3001
3035
  opacity: 1;
3002
3036
  }
3003
3037
 
3038
+ .group:hover .group-hover\:opacity-40 {
3039
+ opacity: 0.4;
3040
+ }
3041
+
3004
3042
  .prose-a\:text-pzh-green :is(:where(a):not(:where([class~="not-prose"] *))) {
3005
3043
  --tw-text-opacity: 1;
3006
3044
  color: rgb(0 128 77 / var(--tw-text-opacity));
@@ -44,6 +44,22 @@ b {
44
44
  font-family: 'Karbon Medium', sans-serif;
45
45
  }
46
46
 
47
+ ul li ul li {
48
+ list-style-type: circle;
49
+ }
50
+
51
+ ul li ul li ul li {
52
+ list-style-type: square;
53
+ }
54
+
55
+ ol li ol li {
56
+ list-style-type: lower-alpha;
57
+ }
58
+
59
+ ol li ol li ol li {
60
+ list-style-type: lower-roman;
61
+ }
62
+
47
63
  .font-normal {
48
64
  font-family: 'Karbon Regular', sans-serif;
49
65
  }
@@ -143,8 +159,7 @@ b {
143
159
  font-family: 'Karbon Regular', sans-serif;
144
160
  font-weight: 400;
145
161
  font-size: 0.8rem;
146
- box-shadow:
147
- 0px 18px 60px rgba(0, 0, 0, 0.07),
162
+ box-shadow: 0px 18px 60px rgba(0, 0, 0, 0.07),
148
163
  0px 4.02054px 13.4018px rgba(0, 0, 0, 0.0417275),
149
164
  0px 1.19702px 3.99006px rgba(0, 0, 0, 0.0282725);
150
165
  @apply text-pzh-blue-dark border-none;