analytica-frontend-lib 1.0.50 → 1.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/dist/styles.css CHANGED
@@ -74,7 +74,6 @@
74
74
  --radius-lg: 0.5rem;
75
75
  --radius-xl: 0.75rem;
76
76
  --radius-3xl: 1.5rem;
77
- --radius-4xl: 2rem;
78
77
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
79
78
  --blur-xs: 4px;
80
79
  --default-transition-duration: 150ms;
@@ -649,6 +648,9 @@
649
648
  .h-10 {
650
649
  height: calc(var(--spacing) * 10);
651
650
  }
651
+ .h-12 {
652
+ height: calc(var(--spacing) * 12);
653
+ }
652
654
  .h-20 {
653
655
  height: calc(var(--spacing) * 20);
654
656
  }
@@ -1112,9 +1114,6 @@
1112
1114
  .rounded-3xl {
1113
1115
  border-radius: var(--radius-3xl);
1114
1116
  }
1115
- .rounded-4xl {
1116
- border-radius: var(--radius-4xl);
1117
- }
1118
1117
  .rounded-\[4px\] {
1119
1118
  border-radius: 4px;
1120
1119
  }
@@ -1535,6 +1534,9 @@
1535
1534
  .py-3\.5 {
1536
1535
  padding-block: calc(var(--spacing) * 3.5);
1537
1536
  }
1537
+ .py-4 {
1538
+ padding-block: calc(var(--spacing) * 4);
1539
+ }
1538
1540
  .py-6 {
1539
1541
  padding-block: calc(var(--spacing) * 6);
1540
1542
  }
@@ -3100,6 +3102,11 @@
3100
3102
  grid-template-columns: repeat(2, minmax(0, 1fr));
3101
3103
  }
3102
3104
  }
3105
+ .md\:grid-cols-3 {
3106
+ @media (width >= 48rem) {
3107
+ grid-template-columns: repeat(3, minmax(0, 1fr));
3108
+ }
3109
+ }
3103
3110
  .md\:justify-center {
3104
3111
  @media (width >= 48rem) {
3105
3112
  justify-content: center;