@pzh-ui/css 0.0.72 → 0.0.73

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.72",
3
+ "version": "0.0.73",
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": "3b4fa9fa4c4a2f44e9ae19afb41a701b7eb9ab2f",
24
+ "gitHead": "fb0ef4cadbb900cdce75da185bf203beeac47997",
25
25
  "devDependencies": {
26
26
  "tailwindcss": "^3.3.2"
27
27
  }
package/src/tailwind.css CHANGED
@@ -1576,6 +1576,34 @@ select {
1576
1576
  }
1577
1577
  }
1578
1578
 
1579
+ table {
1580
+ font-size: 1.25rem !important;
1581
+ line-height: 1.875rem !important;
1582
+ }
1583
+
1584
+ table, table td, table th {
1585
+ border-width: 1px;
1586
+ --tw-border-opacity: 1;
1587
+ border-color: rgb(92 92 92 / var(--tw-border-opacity));
1588
+ }
1589
+
1590
+ table tr th {
1591
+ --tw-bg-opacity: 1;
1592
+ background-color: rgb(248 248 248 / var(--tw-bg-opacity));
1593
+ font-weight: 700;
1594
+ font-family: 'Karbon Medium', sans-serif;
1595
+ }
1596
+
1597
+ table tr {
1598
+ border-bottom-width: 1px;
1599
+ --tw-border-opacity: 1;
1600
+ border-color: rgb(92 92 92 / var(--tw-border-opacity));
1601
+ }
1602
+
1603
+ table td, table th {
1604
+ padding: 0.5rem;
1605
+ }
1606
+
1579
1607
  .sr-only {
1580
1608
  position: absolute;
1581
1609
  width: 1px;
@@ -2009,6 +2037,18 @@ select {
2009
2037
  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));
2010
2038
  }
2011
2039
 
2040
+ .scale-100 {
2041
+ --tw-scale-x: 1;
2042
+ --tw-scale-y: 1;
2043
+ 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));
2044
+ }
2045
+
2046
+ .scale-90 {
2047
+ --tw-scale-x: .9;
2048
+ --tw-scale-y: .9;
2049
+ 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));
2050
+ }
2051
+
2012
2052
  .transform {
2013
2053
  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));
2014
2054
  }
@@ -2622,6 +2662,11 @@ select {
2622
2662
  color: rgb(191 191 191 / var(--tw-text-opacity));
2623
2663
  }
2624
2664
 
2665
+ .text-pzh-gray-500 {
2666
+ --tw-text-opacity: 1;
2667
+ color: rgb(131 131 131 / var(--tw-text-opacity));
2668
+ }
2669
+
2625
2670
  .text-pzh-gray-600 {
2626
2671
  --tw-text-opacity: 1;
2627
2672
  color: rgb(92 92 92 / var(--tw-text-opacity));
@@ -2763,6 +2808,12 @@ select {
2763
2808
  transition-duration: 150ms;
2764
2809
  }
2765
2810
 
2811
+ .transition-\[transform\2c opacity\] {
2812
+ transition-property: transform,opacity;
2813
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
2814
+ transition-duration: 150ms;
2815
+ }
2816
+
2766
2817
  .transition-all {
2767
2818
  transition-property: all;
2768
2819
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
@@ -2775,6 +2826,10 @@ select {
2775
2826
  transition-duration: 150ms;
2776
2827
  }
2777
2828
 
2829
+ .duration-100 {
2830
+ transition-duration: 100ms;
2831
+ }
2832
+
2778
2833
  .duration-150 {
2779
2834
  transition-duration: 150ms;
2780
2835
  }
@@ -267,4 +267,24 @@ ol li ol li ol li {
267
267
  opacity: 1;
268
268
  }
269
269
  }
270
+
271
+ table {
272
+ @apply !text-m;
273
+ }
274
+
275
+ table, table td, table th {
276
+ @apply border border-pzh-gray-600;
277
+ }
278
+
279
+ table tr th {
280
+ @apply bg-pzh-gray-100 font-bold;
281
+ }
282
+
283
+ table tr {
284
+ @apply border-b border-pzh-gray-600;
285
+ }
286
+
287
+ table td, table th {
288
+ @apply p-2;
289
+ }
270
290
  }