@mlw-packages/react-components 1.3.1 → 1.3.3

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/index.css CHANGED
@@ -477,6 +477,9 @@ body {
477
477
  .top-\[50\%\] {
478
478
  top: 50%;
479
479
  }
480
+ .isolate {
481
+ isolation: isolate;
482
+ }
480
483
  .z-10 {
481
484
  z-index: 10;
482
485
  }
@@ -597,6 +600,9 @@ body {
597
600
  .mt-5 {
598
601
  margin-top: 1.25rem;
599
602
  }
603
+ .mt-6 {
604
+ margin-top: 1.5rem;
605
+ }
600
606
  .mt-auto {
601
607
  margin-top: auto;
602
608
  }
@@ -1219,6 +1225,9 @@ body {
1219
1225
  .rounded-md {
1220
1226
  border-radius: calc(var(--radius) - 2px);
1221
1227
  }
1228
+ .rounded-none {
1229
+ border-radius: 0px;
1230
+ }
1222
1231
  .rounded-sm {
1223
1232
  border-radius: calc(var(--radius) - 4px);
1224
1233
  }
@@ -1229,10 +1238,26 @@ body {
1229
1238
  border-bottom-right-radius: var(--radius);
1230
1239
  border-bottom-left-radius: var(--radius);
1231
1240
  }
1241
+ .rounded-b-md {
1242
+ border-bottom-right-radius: calc(var(--radius) - 2px);
1243
+ border-bottom-left-radius: calc(var(--radius) - 2px);
1244
+ }
1232
1245
  .rounded-b-xl {
1233
1246
  border-bottom-right-radius: 0.75rem;
1234
1247
  border-bottom-left-radius: 0.75rem;
1235
1248
  }
1249
+ .rounded-l-md {
1250
+ border-top-left-radius: calc(var(--radius) - 2px);
1251
+ border-bottom-left-radius: calc(var(--radius) - 2px);
1252
+ }
1253
+ .rounded-r-md {
1254
+ border-top-right-radius: calc(var(--radius) - 2px);
1255
+ border-bottom-right-radius: calc(var(--radius) - 2px);
1256
+ }
1257
+ .rounded-t-md {
1258
+ border-top-left-radius: calc(var(--radius) - 2px);
1259
+ border-top-right-radius: calc(var(--radius) - 2px);
1260
+ }
1236
1261
  .rounded-t-none {
1237
1262
  border-top-left-radius: 0px;
1238
1263
  border-top-right-radius: 0px;
@@ -1244,6 +1269,9 @@ body {
1244
1269
  .border {
1245
1270
  border-width: 1px;
1246
1271
  }
1272
+ .border-0 {
1273
+ border-width: 0px;
1274
+ }
1247
1275
  .border-2 {
1248
1276
  border-width: 2px;
1249
1277
  }