@maboussoleaidant/design-system 0.1.37 → 0.1.39

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.
@@ -1,4 +1,4 @@
1
- /*! tailwindcss v4.3.2 | MIT License | https://tailwindcss.com */
1
+ /*! tailwindcss v4.1.18 | MIT License | https://tailwindcss.com */
2
2
  @layer properties;
3
3
  @layer theme, base, components, utilities;
4
4
  :root {
@@ -960,6 +960,39 @@ video {
960
960
  border-color: var(--mba-color-error-500);
961
961
  color: var(--mba-color-error-500);
962
962
  }
963
+ .mba-btn-to-top {
964
+ position: fixed;
965
+ right: var(--mba-space-lg);
966
+ bottom: var(--mba-space-lg);
967
+ z-index: 40;
968
+ display: inline-flex;
969
+ align-items: center;
970
+ justify-content: center;
971
+ width: var(--mba-space-xl);
972
+ height: var(--mba-space-xl);
973
+ padding: 0;
974
+ border: none;
975
+ border-radius: var(--mba-radius-full);
976
+ background-color: var(--mba-color-primary-500);
977
+ color: var(--mba-color-white);
978
+ cursor: pointer;
979
+ transition: background-color var(--mba-transition-base);
980
+ }
981
+ .mba-btn-to-top .mba-icon {
982
+ font-size: 24px;
983
+ width: 24px;
984
+ height: 24px;
985
+ }
986
+ .mba-btn-to-top:hover:not(:disabled):not(.is-disabled) {
987
+ background-color: var(--mba-color-primary-800);
988
+ }
989
+ .mba-btn-to-top:focus-visible {
990
+ outline: none;
991
+ box-shadow: var(--mba-focus-ring);
992
+ }
993
+ .mba-btn-to-top.is-hidden {
994
+ display: none;
995
+ }
963
996
  .mba-btn-sm {
964
997
  height: auto;
965
998
  padding: var(--mba-space-xxs) var(--mba-space-xs);
@@ -1083,6 +1116,16 @@ video {
1083
1116
  .mba-card:hover .mba-card__icon {
1084
1117
  transform: translateX(4px);
1085
1118
  }
1119
+ .mba-card__icon--circle {
1120
+ width: var(--mba-space-xl);
1121
+ height: var(--mba-space-xl);
1122
+ padding: var(--mba-space-xs);
1123
+ border-radius: var(--mba-radius-full);
1124
+ background-color: var(--mba-color-primary-50);
1125
+ }
1126
+ .mba-card:hover .mba-card__icon--circle {
1127
+ transform: none;
1128
+ }
1086
1129
  .mba-card-grid {
1087
1130
  display: grid;
1088
1131
  gap: var(--mba-space-md);
@@ -1297,6 +1340,177 @@ video {
1297
1340
  grid-template-columns: repeat(3, 1fr);
1298
1341
  }
1299
1342
  }
1343
+ .mba-article-card--edito {
1344
+ padding: var(--mba-space-xs);
1345
+ gap: var(--mba-space-md);
1346
+ justify-content: space-between;
1347
+ }
1348
+ .mba-article-card__media {
1349
+ display: flex;
1350
+ flex-direction: column;
1351
+ gap: var(--mba-space-xs);
1352
+ width: 100%;
1353
+ }
1354
+ .mba-article-card--edito .mba-article-card__image {
1355
+ height: 232px;
1356
+ border-radius: var(--mba-radius-xs);
1357
+ }
1358
+ .mba-article-card__meta {
1359
+ margin: 0;
1360
+ font-family: var(--mba-font-family-text);
1361
+ font-size: var(--mba-font-size-xxs);
1362
+ font-weight: var(--mba-font-weight-regular);
1363
+ color: var(--mba-color-primary-900);
1364
+ line-height: normal;
1365
+ }
1366
+ .mba-article-card--edito .mba-article-card__content {
1367
+ padding: 0;
1368
+ gap: var(--mba-space-xs);
1369
+ }
1370
+ .mba-article-card--edito .mba-article-card__title {
1371
+ color: var(--mba-color-primary-900);
1372
+ display: -webkit-box;
1373
+ -webkit-box-orient: vertical;
1374
+ -webkit-line-clamp: 2;
1375
+ overflow: hidden;
1376
+ }
1377
+ .mba-article-card--edito .mba-article-card__text {
1378
+ color: var(--mba-color-primary-900);
1379
+ display: -webkit-box;
1380
+ -webkit-box-orient: vertical;
1381
+ -webkit-line-clamp: 3;
1382
+ overflow: hidden;
1383
+ }
1384
+ .mba-article-card--edito .mba-article-card__footer {
1385
+ padding: 0;
1386
+ margin-top: 0;
1387
+ }
1388
+ .mba-feature-card {
1389
+ position: relative;
1390
+ display: block;
1391
+ overflow: hidden;
1392
+ aspect-ratio: 181 / 212;
1393
+ border-radius: var(--mba-radius-sm);
1394
+ text-decoration: none;
1395
+ }
1396
+ .mba-feature-card__image {
1397
+ position: absolute;
1398
+ inset: 0;
1399
+ width: 100%;
1400
+ height: 100%;
1401
+ object-fit: cover;
1402
+ transition: transform var(--mba-transition-base);
1403
+ }
1404
+ .mba-feature-card__label {
1405
+ position: absolute;
1406
+ left: var(--mba-space-xs);
1407
+ right: var(--mba-space-xs);
1408
+ bottom: var(--mba-space-xs);
1409
+ display: flex;
1410
+ align-items: center;
1411
+ gap: var(--mba-space-xs);
1412
+ padding: var(--mba-space-sm);
1413
+ background-color: var(--mba-color-white);
1414
+ border-radius: var(--mba-radius-sm);
1415
+ }
1416
+ .mba-feature-card__title {
1417
+ flex: 1 1 0;
1418
+ min-width: 0;
1419
+ font-family: var(--mba-font-family-text);
1420
+ font-size: var(--mba-font-size-sm);
1421
+ font-weight: var(--mba-font-weight-semibold);
1422
+ color: var(--mba-color-primary-900);
1423
+ line-height: normal;
1424
+ }
1425
+ .mba-feature-card__icon {
1426
+ flex-shrink: 0;
1427
+ color: var(--mba-color-primary-500);
1428
+ transition: transform var(--mba-transition-base);
1429
+ }
1430
+ .mba-feature-card:hover .mba-feature-card__image {
1431
+ transform: scale(1.04);
1432
+ }
1433
+ .mba-feature-card:hover .mba-feature-card__icon {
1434
+ transform: translateX(4px);
1435
+ }
1436
+ .mba-feature-card:focus-visible {
1437
+ outline: none;
1438
+ box-shadow: var(--mba-focus-ring);
1439
+ }
1440
+ @media (prefers-reduced-motion: reduce) {
1441
+ .mba-feature-card__image,
1442
+ .mba-feature-card__icon {
1443
+ transition: none;
1444
+ }
1445
+ .mba-feature-card:hover .mba-feature-card__image {
1446
+ transform: none;
1447
+ }
1448
+ }
1449
+ .mba-resource-card {
1450
+ --mba-resource-decoration-color: var(--mba-color-pastel-lavender);
1451
+ position: relative;
1452
+ display: flex;
1453
+ flex-direction: column;
1454
+ justify-content: space-between;
1455
+ gap: var(--mba-space-md);
1456
+ overflow: hidden;
1457
+ padding: var(--mba-space-md) var(--mba-space-xxl) var(--mba-space-md) var(--mba-space-md);
1458
+ background-color: var(--mba-color-white);
1459
+ border: 1px solid var(--mba-color-grey-100);
1460
+ border-radius: var(--mba-radius-md);
1461
+ }
1462
+ .mba-resource-card--oranger {
1463
+ --mba-resource-decoration-color: var(--mba-color-pastel-oranger);
1464
+ }
1465
+ .mba-resource-card--bleuet {
1466
+ --mba-resource-decoration-color: var(--mba-color-pastel-bleuet);
1467
+ }
1468
+ .mba-resource-card__decoration {
1469
+ position: absolute;
1470
+ inset: 0;
1471
+ z-index: 0;
1472
+ overflow: hidden;
1473
+ border-radius: inherit;
1474
+ pointer-events: none;
1475
+ background: radial-gradient(
1476
+ 115% 90% at 12% 100%,
1477
+ var(--mba-resource-decoration-color),
1478
+ transparent 72%
1479
+ );
1480
+ }
1481
+ .mba-resource-card__content {
1482
+ position: relative;
1483
+ z-index: 1;
1484
+ display: flex;
1485
+ flex-direction: column;
1486
+ gap: var(--mba-space-sm);
1487
+ width: 100%;
1488
+ }
1489
+ .mba-resource-card__title {
1490
+ margin: 0;
1491
+ font-family: var(--mba-font-family-text);
1492
+ font-size: var(--mba-font-size-md);
1493
+ font-weight: var(--mba-font-weight-semibold);
1494
+ color: var(--mba-color-primary-900);
1495
+ line-height: normal;
1496
+ }
1497
+ .mba-resource-card__text {
1498
+ margin: 0;
1499
+ font-family: var(--mba-font-family-text);
1500
+ font-size: var(--mba-font-size-xs);
1501
+ font-weight: var(--mba-font-weight-semibold);
1502
+ color: var(--mba-color-primary-900);
1503
+ line-height: normal;
1504
+ }
1505
+ .mba-resource-card__action {
1506
+ position: relative;
1507
+ z-index: 1;
1508
+ }
1509
+ @media (max-width: 600px) {
1510
+ .mba-resource-card {
1511
+ padding-right: var(--mba-space-md);
1512
+ }
1513
+ }
1300
1514
  }
1301
1515
  @layer components {
1302
1516
  .mba-arrow {
@@ -1613,6 +1827,23 @@ video {
1613
1827
  background-color: var(--mba-color-primary-500);
1614
1828
  cursor: default;
1615
1829
  }
1830
+ .mba-dots--expand .mba-dot {
1831
+ width: var(--mba-space-sm);
1832
+ background-color: var(--mba-color-grey-100);
1833
+ transition: width var(--mba-transition-base), background-color var(--mba-transition-base);
1834
+ }
1835
+ .mba-dots--expand .mba-dot:hover:not(.is-active) {
1836
+ background-color: var(--mba-color-grey-300);
1837
+ }
1838
+ .mba-dots--expand .mba-dot.is-active {
1839
+ width: 4.5rem;
1840
+ background-color: var(--mba-color-primary-500);
1841
+ }
1842
+ @media (prefers-reduced-motion: reduce) {
1843
+ .mba-dots--expand .mba-dot {
1844
+ transition: none;
1845
+ }
1846
+ }
1616
1847
  }
1617
1848
  @layer components {
1618
1849
  .mba-label {
@@ -1935,6 +2166,10 @@ video {
1935
2166
  color: var(--mba-color-grey-400);
1936
2167
  margin-left: var(--mba-space-xs);
1937
2168
  }
2169
+ .mba-input-icon--leading .mba-input-icon__icon {
2170
+ margin-left: 0;
2171
+ margin-right: var(--mba-space-xs);
2172
+ }
1938
2173
  button.mba-input-icon__icon {
1939
2174
  background: none;
1940
2175
  border: none;
@@ -3121,6 +3356,106 @@ video {
3121
3356
  border-top-color: var(--mba-color-primary-pro-400);
3122
3357
  }
3123
3358
  }
3359
+ @layer components {
3360
+ .mba-alert {
3361
+ display: flex;
3362
+ align-items: flex-start;
3363
+ gap: var(--mba-space-sm);
3364
+ padding: var(--mba-space-sm);
3365
+ border: 1px solid transparent;
3366
+ border-radius: var(--mba-radius-sm);
3367
+ background-color: var(--mba-color-grey-50);
3368
+ font-family: var(--mba-font-family-text);
3369
+ }
3370
+ .mba-alert--dashed {
3371
+ border-style: dashed;
3372
+ }
3373
+ .mba-alert.is-hidden {
3374
+ display: none;
3375
+ }
3376
+ .mba-alert__icon {
3377
+ display: inline-flex;
3378
+ align-items: center;
3379
+ justify-content: center;
3380
+ flex-shrink: 0;
3381
+ color: var(--mba-color-grey-800);
3382
+ }
3383
+ .mba-alert__icon--boxed {
3384
+ padding: var(--mba-space-xs);
3385
+ background-color: var(--mba-color-white);
3386
+ border-radius: var(--mba-radius-xs);
3387
+ }
3388
+ .mba-alert__content {
3389
+ display: flex;
3390
+ flex-direction: column;
3391
+ gap: var(--mba-space-xs);
3392
+ flex: 1 1 0;
3393
+ min-width: 0;
3394
+ }
3395
+ .mba-alert__title {
3396
+ margin: 0;
3397
+ font-size: var(--mba-font-size-xxs);
3398
+ font-weight: var(--mba-font-weight-bold);
3399
+ color: var(--mba-color-grey-800);
3400
+ line-height: normal;
3401
+ }
3402
+ .mba-alert__text {
3403
+ margin: 0;
3404
+ font-size: var(--mba-font-size-xs);
3405
+ font-weight: var(--mba-font-weight-regular);
3406
+ color: var(--mba-color-primary-900);
3407
+ line-height: var(--mba-leading-snug);
3408
+ }
3409
+ .mba-alert__close {
3410
+ display: inline-flex;
3411
+ align-items: center;
3412
+ justify-content: center;
3413
+ flex-shrink: 0;
3414
+ margin-left: auto;
3415
+ padding: 0;
3416
+ border: none;
3417
+ background-color: transparent;
3418
+ color: var(--mba-color-grey-400);
3419
+ cursor: pointer;
3420
+ transition: color var(--mba-transition-base);
3421
+ }
3422
+ .mba-alert__close:hover {
3423
+ color: var(--mba-color-grey-800);
3424
+ }
3425
+ .mba-alert__close:focus-visible {
3426
+ outline: none;
3427
+ border-radius: var(--mba-radius-2xs);
3428
+ box-shadow: var(--mba-focus-ring);
3429
+ }
3430
+ .mba-alert--info {
3431
+ background-color: var(--mba-color-info-50);
3432
+ border-color: var(--mba-color-info-400);
3433
+ }
3434
+ .mba-alert--info .mba-alert__icon {
3435
+ color: var(--mba-color-info-500);
3436
+ }
3437
+ .mba-alert--success {
3438
+ background-color: var(--mba-color-success-100);
3439
+ border-color: var(--mba-color-success-400);
3440
+ }
3441
+ .mba-alert--success .mba-alert__icon {
3442
+ color: var(--mba-color-success-500);
3443
+ }
3444
+ .mba-alert--warning {
3445
+ background-color: var(--mba-color-warning-50);
3446
+ border-color: var(--mba-color-warning-400);
3447
+ }
3448
+ .mba-alert--warning .mba-alert__icon {
3449
+ color: var(--mba-color-warning-500);
3450
+ }
3451
+ .mba-alert--error {
3452
+ background-color: var(--mba-color-error-100);
3453
+ border-color: var(--mba-color-error-400);
3454
+ }
3455
+ .mba-alert--error .mba-alert__icon {
3456
+ color: var(--mba-color-error-500);
3457
+ }
3458
+ }
3124
3459
  @layer components {
3125
3460
  .mba-accordion-group {
3126
3461
  display: flex;
@@ -3184,6 +3519,9 @@ video {
3184
3519
  .mba-accordion--line.mba-accordion--partenaire .mba-accordion__header:hover {
3185
3520
  background-color: transparent;
3186
3521
  }
3522
+ .mba-accordion__panel .mba-accordion--line .mba-accordion__header {
3523
+ border-bottom-style: dashed;
3524
+ }
3187
3525
  .mba-accordion__title-wrapper {
3188
3526
  display: flex;
3189
3527
  align-items: center;
@@ -3230,14 +3568,14 @@ video {
3230
3568
  color: var(--mba-color-primary-900);
3231
3569
  transition: transform var(--mba-transition-base);
3232
3570
  }
3233
- .mba-accordion--open .mba-accordion__icon {
3571
+ .mba-accordion--open > .mba-accordion__header .mba-accordion__icon {
3234
3572
  transform: rotate(180deg);
3235
3573
  }
3236
3574
  .mba-accordion__panel {
3237
3575
  display: none;
3238
3576
  background-color: var(--mba-color-white);
3239
3577
  }
3240
- .mba-accordion--open .mba-accordion__panel {
3578
+ .mba-accordion--open > .mba-accordion__panel {
3241
3579
  display: block;
3242
3580
  }
3243
3581
  .mba-accordion__panel-inner {
@@ -3310,6 +3648,163 @@ video {
3310
3648
  font-weight: var(--mba-font-weight-semibold);
3311
3649
  }
3312
3650
  }
3651
+ @layer components {
3652
+ .mba-carousel {
3653
+ width: 100%;
3654
+ }
3655
+ .mba-carousel__track {
3656
+ display: flex;
3657
+ gap: var(--mba-space-sm);
3658
+ overflow-x: auto;
3659
+ scroll-snap-type: x mandatory;
3660
+ scroll-behavior: smooth;
3661
+ scrollbar-width: none;
3662
+ -ms-overflow-style: none;
3663
+ }
3664
+ .mba-carousel__track::-webkit-scrollbar {
3665
+ display: none;
3666
+ }
3667
+ .mba-carousel__slide {
3668
+ flex: 0 0 var(--mba-carousel-slide-width, 360px);
3669
+ max-width: 100%;
3670
+ scroll-snap-align: start;
3671
+ }
3672
+ .mba-carousel__footer {
3673
+ position: relative;
3674
+ display: flex;
3675
+ align-items: center;
3676
+ justify-content: center;
3677
+ min-height: 32px;
3678
+ margin-top: var(--mba-space-md);
3679
+ }
3680
+ .mba-carousel__controls {
3681
+ position: absolute;
3682
+ right: 0;
3683
+ display: inline-flex;
3684
+ align-items: center;
3685
+ gap: var(--mba-space-xs);
3686
+ }
3687
+ .mba-carousel__control {
3688
+ display: inline-flex;
3689
+ align-items: center;
3690
+ justify-content: center;
3691
+ flex-shrink: 0;
3692
+ padding: var(--mba-space-xxs);
3693
+ border: none;
3694
+ border-radius: var(--mba-radius-full);
3695
+ background-color: var(--mba-color-primary-500);
3696
+ color: var(--mba-color-white);
3697
+ cursor: pointer;
3698
+ transition: background-color var(--mba-transition-base);
3699
+ }
3700
+ .mba-carousel__control:hover:not(:disabled):not(.is-disabled) {
3701
+ background-color: var(--mba-color-primary-800);
3702
+ }
3703
+ .mba-carousel__control:focus-visible {
3704
+ outline: none;
3705
+ box-shadow: var(--mba-focus-ring);
3706
+ }
3707
+ .mba-carousel__control:disabled,
3708
+ .mba-carousel__control.is-disabled {
3709
+ background-color: var(--mba-color-grey-100);
3710
+ cursor: not-allowed;
3711
+ }
3712
+ @media (prefers-reduced-motion: reduce) {
3713
+ .mba-carousel__track {
3714
+ scroll-behavior: auto;
3715
+ }
3716
+ }
3717
+ }
3718
+ @layer components {
3719
+ .mba-breadcrumb {
3720
+ font-family: var(--mba-font-family-text);
3721
+ font-size: var(--mba-font-size-xxs);
3722
+ line-height: normal;
3723
+ }
3724
+ .mba-breadcrumb__list {
3725
+ display: flex;
3726
+ flex-wrap: wrap;
3727
+ align-items: center;
3728
+ gap: var(--mba-space-xxs);
3729
+ margin: 0;
3730
+ padding: 0;
3731
+ list-style: none;
3732
+ }
3733
+ .mba-breadcrumb__item {
3734
+ display: inline-flex;
3735
+ align-items: center;
3736
+ gap: var(--mba-space-xxs);
3737
+ min-width: 0;
3738
+ }
3739
+ .mba-breadcrumb__link {
3740
+ display: inline-flex;
3741
+ align-items: center;
3742
+ gap: var(--mba-space-xxs);
3743
+ min-width: 0;
3744
+ color: var(--mba-color-grey-800);
3745
+ font-weight: var(--mba-font-weight-semibold);
3746
+ text-decoration: none;
3747
+ transition: color var(--mba-transition-base);
3748
+ }
3749
+ .mba-breadcrumb__link:hover {
3750
+ color: var(--mba-color-primary-800);
3751
+ text-decoration: underline;
3752
+ }
3753
+ .mba-breadcrumb__link:focus-visible {
3754
+ outline: none;
3755
+ border-radius: var(--mba-radius-2xs);
3756
+ box-shadow: var(--mba-focus-ring);
3757
+ }
3758
+ .mba-breadcrumb__label {
3759
+ overflow: hidden;
3760
+ text-overflow: ellipsis;
3761
+ white-space: nowrap;
3762
+ }
3763
+ .mba-breadcrumb__home-icon {
3764
+ flex-shrink: 0;
3765
+ color: inherit;
3766
+ }
3767
+ .mba-breadcrumb__separator {
3768
+ flex-shrink: 0;
3769
+ color: var(--mba-color-grey-400);
3770
+ user-select: none;
3771
+ }
3772
+ .mba-breadcrumb__current,
3773
+ .mba-breadcrumb [aria-current="page"] {
3774
+ color: var(--mba-color-primary-500);
3775
+ font-weight: var(--mba-font-weight-semibold);
3776
+ overflow: hidden;
3777
+ text-overflow: ellipsis;
3778
+ white-space: nowrap;
3779
+ }
3780
+ .mba-breadcrumb__toggle {
3781
+ display: inline-flex;
3782
+ align-items: center;
3783
+ justify-content: center;
3784
+ min-width: 24px;
3785
+ padding: 0 var(--mba-space-xxs);
3786
+ border: none;
3787
+ background: transparent;
3788
+ color: var(--mba-color-grey-800);
3789
+ font-family: inherit;
3790
+ font-size: inherit;
3791
+ font-weight: var(--mba-font-weight-semibold);
3792
+ line-height: normal;
3793
+ cursor: pointer;
3794
+ transition: color var(--mba-transition-base);
3795
+ }
3796
+ .mba-breadcrumb__toggle:hover {
3797
+ color: var(--mba-color-primary-800);
3798
+ }
3799
+ .mba-breadcrumb__toggle:focus-visible {
3800
+ outline: none;
3801
+ border-radius: var(--mba-radius-2xs);
3802
+ box-shadow: var(--mba-focus-ring);
3803
+ }
3804
+ .mba-breadcrumb__item.is-hidden {
3805
+ display: none;
3806
+ }
3807
+ }
3313
3808
  .text-xxs {
3314
3809
  font-size: var(--mba-font-size-xxs);
3315
3810
  }
@@ -3459,7 +3954,6 @@ video {
3459
3954
  --spacing-lg: var(--mba-space-lg);
3460
3955
  --spacing-xl: var(--mba-space-xl);
3461
3956
  --spacing-xxl: var(--mba-space-xxl);
3462
- --spacing-2: 0.5rem;
3463
3957
  --spacing-4: 1rem;
3464
3958
  --spacing-6: 1.5rem;
3465
3959
  --spacing-8: 2rem;
@@ -3688,6 +4182,9 @@ video {
3688
4182
  .pointer-events-none {
3689
4183
  pointer-events: none;
3690
4184
  }
4185
+ .invisible {
4186
+ visibility: hidden;
4187
+ }
3691
4188
  .visible {
3692
4189
  visibility: visible;
3693
4190
  }
@@ -3707,7 +4204,7 @@ video {
3707
4204
  top: calc(var(--spacing-lg) * -1);
3708
4205
  }
3709
4206
  .top-1\/2 {
3710
- top: calc(1 / 2 * 100%);
4207
+ top: calc(1/2 * 100%);
3711
4208
  }
3712
4209
  .-right-xl {
3713
4210
  right: calc(var(--spacing-xl) * -1);
@@ -3725,7 +4222,7 @@ video {
3725
4222
  left: calc(var(--spacing-xl) * -1);
3726
4223
  }
3727
4224
  .left-1\/2 {
3728
- left: calc(1 / 2 * 100%);
4225
+ left: calc(1/2 * 100%);
3729
4226
  }
3730
4227
  .left-sm {
3731
4228
  left: var(--spacing-sm);
@@ -3769,6 +4266,9 @@ video {
3769
4266
  .mx-auto {
3770
4267
  margin-inline: auto;
3771
4268
  }
4269
+ .mt-0 {
4270
+ margin-top: var(--spacing-0);
4271
+ }
3772
4272
  .mt-lg {
3773
4273
  margin-top: var(--spacing-lg);
3774
4274
  }
@@ -3973,12 +4473,15 @@ video {
3973
4473
  .flex-1 {
3974
4474
  flex: 1;
3975
4475
  }
4476
+ .shrink-0 {
4477
+ flex-shrink: 0;
4478
+ }
3976
4479
  .-translate-x-1\/2 {
3977
- --tw-translate-x: calc(calc(1 / 2 * 100%) * -1);
4480
+ --tw-translate-x: calc(calc(1/2 * 100%) * -1);
3978
4481
  translate: var(--tw-translate-x) var(--tw-translate-y);
3979
4482
  }
3980
4483
  .-translate-y-1\/2 {
3981
- --tw-translate-y: calc(calc(1 / 2 * 100%) * -1);
4484
+ --tw-translate-y: calc(calc(1/2 * 100%) * -1);
3982
4485
  translate: var(--tw-translate-x) var(--tw-translate-y);
3983
4486
  }
3984
4487
  .transform {
@@ -4062,6 +4565,14 @@ video {
4062
4565
  .gap-y-lg {
4063
4566
  row-gap: var(--spacing-lg);
4064
4567
  }
4568
+ .truncate {
4569
+ overflow: hidden;
4570
+ text-overflow: ellipsis;
4571
+ white-space: nowrap;
4572
+ }
4573
+ .overflow-auto {
4574
+ overflow: auto;
4575
+ }
4065
4576
  .overflow-hidden {
4066
4577
  overflow: hidden;
4067
4578
  }
@@ -4270,9 +4781,6 @@ video {
4270
4781
  .px-xxs {
4271
4782
  padding-inline: var(--spacing-xxs);
4272
4783
  }
4273
- .py-2 {
4274
- padding-block: var(--spacing-2);
4275
- }
4276
4784
  .py-sm {
4277
4785
  padding-block: var(--spacing-sm);
4278
4786
  }
@@ -4531,6 +5039,31 @@ video {
4531
5039
  }
4532
5040
  }
4533
5041
  }
5042
+ .sm\:w-auto {
5043
+ @media (width >= 40rem) {
5044
+ width: auto;
5045
+ }
5046
+ }
5047
+ .sm\:flex-1 {
5048
+ @media (width >= 40rem) {
5049
+ flex: 1;
5050
+ }
5051
+ }
5052
+ .sm\:flex-row {
5053
+ @media (width >= 40rem) {
5054
+ flex-direction: row;
5055
+ }
5056
+ }
5057
+ .sm\:items-center {
5058
+ @media (width >= 40rem) {
5059
+ align-items: center;
5060
+ }
5061
+ }
5062
+ .sm\:justify-between {
5063
+ @media (width >= 40rem) {
5064
+ justify-content: space-between;
5065
+ }
5066
+ }
4534
5067
  .md\:grid-cols-2 {
4535
5068
  @media (width >= 48rem) {
4536
5069
  grid-template-columns: repeat(2, minmax(0, 1fr));