@geomak/ui 6.30.0 → 6.31.0

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
@@ -837,6 +837,9 @@ video {
837
837
  .-top-1 {
838
838
  top: -0.25rem;
839
839
  }
840
+ .-top-3 {
841
+ top: -0.75rem;
842
+ }
840
843
  .-top-8 {
841
844
  top: -2rem;
842
845
  }
@@ -1045,6 +1048,9 @@ video {
1045
1048
  .mb-1 {
1046
1049
  margin-bottom: 0.25rem;
1047
1050
  }
1051
+ .mb-10 {
1052
+ margin-bottom: 2.5rem;
1053
+ }
1048
1054
  .mb-2 {
1049
1055
  margin-bottom: 0.5rem;
1050
1056
  }
@@ -1090,6 +1096,9 @@ video {
1090
1096
  .mt-1\.5 {
1091
1097
  margin-top: 0.375rem;
1092
1098
  }
1099
+ .mt-12 {
1100
+ margin-top: 3rem;
1101
+ }
1093
1102
  .mt-2 {
1094
1103
  margin-top: 0.5rem;
1095
1104
  }
@@ -1132,6 +1141,9 @@ video {
1132
1141
  .hidden {
1133
1142
  display: none;
1134
1143
  }
1144
+ .aspect-\[16\/10\] {
1145
+ aspect-ratio: 16/10;
1146
+ }
1135
1147
  .aspect-\[4\/3\] {
1136
1148
  aspect-ratio: 4/3;
1137
1149
  }
@@ -1471,9 +1483,15 @@ video {
1471
1483
  .max-w-3xl {
1472
1484
  max-width: 48rem;
1473
1485
  }
1486
+ .max-w-4xl {
1487
+ max-width: 56rem;
1488
+ }
1474
1489
  .max-w-5xl {
1475
1490
  max-width: 64rem;
1476
1491
  }
1492
+ .max-w-6xl {
1493
+ max-width: 72rem;
1494
+ }
1477
1495
  .max-w-\[12rem\] {
1478
1496
  max-width: 12rem;
1479
1497
  }
@@ -1504,6 +1522,9 @@ video {
1504
1522
  .max-w-sm {
1505
1523
  max-width: 24rem;
1506
1524
  }
1525
+ .max-w-xl {
1526
+ max-width: 36rem;
1527
+ }
1507
1528
  .flex-1 {
1508
1529
  flex: 1 1 0%;
1509
1530
  }
@@ -2208,6 +2229,10 @@ video {
2208
2229
  padding-top: 2.5rem;
2209
2230
  padding-bottom: 2.5rem;
2210
2231
  }
2232
+ .py-16 {
2233
+ padding-top: 4rem;
2234
+ padding-bottom: 4rem;
2235
+ }
2211
2236
  .py-2 {
2212
2237
  padding-top: 0.5rem;
2213
2238
  padding-bottom: 0.5rem;
@@ -2422,6 +2447,9 @@ video {
2422
2447
  .text-background {
2423
2448
  color: var(--color-background);
2424
2449
  }
2450
+ .text-border-strong {
2451
+ color: var(--color-border-strong);
2452
+ }
2425
2453
  .text-foreground {
2426
2454
  color: var(--color-foreground);
2427
2455
  }
@@ -3081,9 +3109,21 @@ video {
3081
3109
  .sm\:border-border {
3082
3110
  border-color: var(--color-border);
3083
3111
  }
3112
+ .sm\:px-10 {
3113
+ padding-left: 2.5rem;
3114
+ padding-right: 2.5rem;
3115
+ }
3116
+ .sm\:py-24 {
3117
+ padding-top: 6rem;
3118
+ padding-bottom: 6rem;
3119
+ }
3084
3120
  .sm\:pr-3 {
3085
3121
  padding-right: 0.75rem;
3086
3122
  }
3123
+ .sm\:text-5xl {
3124
+ font-size: 3rem;
3125
+ line-height: 1;
3126
+ }
3087
3127
  }
3088
3128
  @media (min-width: 768px) {
3089
3129
  .md\:flex {
@@ -3092,18 +3132,32 @@ video {
3092
3132
  .md\:hidden {
3093
3133
  display: none;
3094
3134
  }
3135
+ .md\:grid-cols-2 {
3136
+ grid-template-columns: repeat(2, minmax(0, 1fr));
3137
+ }
3095
3138
  .md\:px-6 {
3096
3139
  padding-left: 1.5rem;
3097
3140
  padding-right: 1.5rem;
3098
3141
  }
3099
3142
  }
3100
3143
  @media (min-width: 976px) {
3144
+ .lg\:-my-2 {
3145
+ margin-top: -0.5rem;
3146
+ margin-bottom: -0.5rem;
3147
+ }
3101
3148
  .lg\:grid-cols-2 {
3102
3149
  grid-template-columns: repeat(2, minmax(0, 1fr));
3103
3150
  }
3104
3151
  .lg\:grid-cols-3 {
3105
3152
  grid-template-columns: repeat(3, minmax(0, 1fr));
3106
3153
  }
3154
+ .lg\:grid-cols-4 {
3155
+ grid-template-columns: repeat(4, minmax(0, 1fr));
3156
+ }
3157
+ .lg\:py-8 {
3158
+ padding-top: 2rem;
3159
+ padding-bottom: 2rem;
3160
+ }
3107
3161
  }
3108
3162
  .\[\&\:\:-webkit-inner-spin-button\]\:appearance-none::-webkit-inner-spin-button {
3109
3163
  -webkit-appearance: none;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@geomak/ui",
3
- "version": "6.30.0",
3
+ "version": "6.31.0",
4
4
  "description": "Oxygen Design System — reusable UI primitives built with Radix UI behaviours and Tailwind CSS styling",
5
5
  "author": "G-MAKROGLOU",
6
6
  "license": "MIT",