@shohojdhara/atomix 0.3.0 → 0.3.1

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.
Files changed (95) hide show
  1. package/dist/atomix.css +309 -105
  2. package/dist/atomix.min.css +3 -5
  3. package/dist/index.d.ts +804 -53
  4. package/dist/index.esm.js +16367 -16413
  5. package/dist/index.esm.js.map +1 -1
  6. package/dist/index.js +16275 -16336
  7. package/dist/index.js.map +1 -1
  8. package/dist/index.min.js +1 -1
  9. package/dist/index.min.js.map +1 -1
  10. package/dist/themes/applemix.css +309 -105
  11. package/dist/themes/applemix.min.css +5 -7
  12. package/dist/themes/boomdevs.css +202 -10
  13. package/dist/themes/boomdevs.min.css +3 -5
  14. package/dist/themes/esrar.css +309 -105
  15. package/dist/themes/esrar.min.css +4 -6
  16. package/dist/themes/flashtrade.css +310 -105
  17. package/dist/themes/flashtrade.min.css +5 -7
  18. package/dist/themes/mashroom.css +300 -96
  19. package/dist/themes/mashroom.min.css +4 -6
  20. package/dist/themes/shaj-default.css +300 -96
  21. package/dist/themes/shaj-default.min.css +4 -6
  22. package/package.json +1 -1
  23. package/src/components/AtomixGlass/AtomixGlass.test.tsx +21 -32
  24. package/src/components/AtomixGlass/AtomixGlass.tsx +55 -42
  25. package/src/components/AtomixGlass/AtomixGlassContainer.tsx +205 -57
  26. package/src/components/AtomixGlass/GlassFilter.tsx +22 -8
  27. package/src/components/AtomixGlass/__snapshots__/AtomixGlass.test.tsx.snap +221 -0
  28. package/src/components/AtomixGlass/atomixGLass.old.tsx +0 -3
  29. package/src/components/AtomixGlass/shader-utils.ts +8 -0
  30. package/src/components/AtomixGlass/stories/AtomixGlass.stories.tsx +319 -100
  31. package/src/components/AtomixGlass/stories/Examples.stories.tsx +601 -105
  32. package/src/components/AtomixGlass/stories/Modes.stories.tsx +30 -12
  33. package/src/components/AtomixGlass/stories/Playground.stories.tsx +173 -38
  34. package/src/components/AtomixGlass/stories/ShaderVariants.stories.tsx +18 -18
  35. package/src/components/AtomixGlass/stories/shared-components.tsx +27 -5
  36. package/src/components/Button/Button.tsx +62 -17
  37. package/src/components/Callout/Callout.test.tsx +8 -14
  38. package/src/components/Card/Card.tsx +103 -1
  39. package/src/components/Card/index.ts +3 -2
  40. package/src/components/Icon/index.ts +1 -1
  41. package/src/components/Modal/Modal.stories.tsx +29 -38
  42. package/src/components/Modal/Modal.tsx +4 -4
  43. package/src/components/Navigation/SideMenu/SideMenu.tsx +49 -41
  44. package/src/components/Navigation/SideMenu/SideMenuItem.tsx +63 -24
  45. package/src/components/Popover/Popover.tsx +1 -1
  46. package/src/components/VideoPlayer/VideoPlayer.stories.tsx +977 -400
  47. package/src/components/VideoPlayer/VideoPlayer.tsx +1 -6
  48. package/src/lib/composables/shared-mouse-tracker.ts +133 -0
  49. package/src/lib/composables/useAtomixGlass.ts +303 -115
  50. package/src/lib/theme/ThemeManager.integration.test.ts +124 -0
  51. package/src/lib/theme/ThemeManager.stories.tsx +13 -13
  52. package/src/lib/theme/ThemeManager.test.ts +4 -0
  53. package/src/lib/theme/ThemeManager.ts +203 -59
  54. package/src/lib/theme/ThemeProvider.tsx +183 -33
  55. package/src/lib/theme/composeTheme.ts +375 -0
  56. package/src/lib/theme/createTheme.test.ts +475 -0
  57. package/src/lib/theme/createTheme.ts +510 -0
  58. package/src/lib/theme/generateCSSVariables.ts +713 -0
  59. package/src/lib/theme/index.ts +67 -0
  60. package/src/lib/theme/themeUtils.ts +333 -0
  61. package/src/lib/theme/types.ts +337 -8
  62. package/src/lib/theme/useTheme.test.tsx +2 -1
  63. package/src/lib/theme/useTheme.ts +6 -22
  64. package/src/lib/types/components.ts +148 -59
  65. package/src/styles/01-settings/_index.scss +2 -2
  66. package/src/styles/01-settings/_settings.badge.scss +2 -2
  67. package/src/styles/01-settings/_settings.border-radius.scss +1 -1
  68. package/src/styles/01-settings/{_settings.maps.scss → _settings.design-tokens.scss} +163 -49
  69. package/src/styles/01-settings/_settings.modal.scss +1 -1
  70. package/src/styles/01-settings/_settings.spacing.scss +14 -13
  71. package/src/styles/03-generic/_generic.root.scss +131 -50
  72. package/src/styles/05-objects/_objects.block.scss +1 -1
  73. package/src/styles/06-components/_components.atomix-glass.scss +20 -22
  74. package/src/styles/06-components/_components.badge.scss +2 -2
  75. package/src/styles/06-components/_components.button.scss +1 -1
  76. package/src/styles/06-components/_components.callout.scss +1 -1
  77. package/src/styles/06-components/_components.card.scss +74 -2
  78. package/src/styles/06-components/_components.chart.scss +1 -1
  79. package/src/styles/06-components/_components.dropdown.scss +6 -0
  80. package/src/styles/06-components/_components.footer.scss +1 -1
  81. package/src/styles/06-components/_components.list-group.scss +1 -1
  82. package/src/styles/06-components/_components.list.scss +1 -1
  83. package/src/styles/06-components/_components.menu.scss +1 -1
  84. package/src/styles/06-components/_components.messages.scss +1 -1
  85. package/src/styles/06-components/_components.modal.scss +7 -2
  86. package/src/styles/06-components/_components.navbar.scss +1 -1
  87. package/src/styles/06-components/_components.popover.scss +10 -0
  88. package/src/styles/06-components/_components.product-review.scss +1 -1
  89. package/src/styles/06-components/_components.progress.scss +1 -1
  90. package/src/styles/06-components/_components.rating.scss +1 -1
  91. package/src/styles/06-components/_components.spinner.scss +1 -1
  92. package/src/styles/99-utilities/_utilities.background.scss +1 -1
  93. package/src/styles/99-utilities/_utilities.border.scss +1 -1
  94. package/src/styles/99-utilities/_utilities.link.scss +1 -1
  95. package/src/styles/99-utilities/_utilities.text.scss +1 -1
package/dist/atomix.css CHANGED
@@ -464,7 +464,6 @@ summary {
464
464
  --atomix-link-decoration: none;
465
465
  --atomix-link-hover-color: rgb(85.3674418605, 18.2930232558, 200.2069767442);
466
466
  --atomix-link-hover-color-rgb: 85.3674418605, 18.2930232558, 200.2069767442;
467
- --atomix-code-color: #ef4444;
468
467
  --atomix-highlight-bg: #fef08a;
469
468
  --atomix-border-width: 1px;
470
469
  --atomix-border-style: solid;
@@ -475,9 +474,7 @@ summary {
475
474
  --atomix-border-radius-lg: 0.625rem;
476
475
  --atomix-border-radius-xl: 0.75rem;
477
476
  --atomix-border-radius-xxl: 1rem;
478
- --atomix-border-radius-2xl: var(
479
- --atomix-border-radius-xxl
480
- );
477
+ --atomix-border-radius-2xl: var(--atomix-border-radius-xxl);
481
478
  --atomix-border-radius-3xl: 1.5rem;
482
479
  --atomix-border-radius-4xl: 2rem;
483
480
  --atomix-border-radius-pill: 50rem;
@@ -492,6 +489,136 @@ summary {
492
489
  --atomix-form-valid-border-color: #22c55e;
493
490
  --atomix-form-invalid-color: #ef4444;
494
491
  --atomix-form-invalid-border-color: #ef4444;
492
+ --atomix-spacing-0: 0rem;
493
+ --atomix-spacing-1: 0.25rem;
494
+ --atomix-spacing-px-6: 0.375rem;
495
+ --atomix-spacing-2: 0.5rem;
496
+ --atomix-spacing-px-10: 0.625rem;
497
+ --atomix-spacing-3: 0.75rem;
498
+ --atomix-spacing-px-14: 0.875rem;
499
+ --atomix-spacing-4: 1rem;
500
+ --atomix-spacing-5: 1.25rem;
501
+ --atomix-spacing-px-22: 1.375rem;
502
+ --atomix-spacing-6: 1.5rem;
503
+ --atomix-spacing-7: 1.75rem;
504
+ --atomix-spacing-px-30: 1.875rem;
505
+ --atomix-spacing-8: 2rem;
506
+ --atomix-spacing-9: 2.25rem;
507
+ --atomix-spacing-10: 2.5rem;
508
+ --atomix-spacing-11: 2.75rem;
509
+ --atomix-spacing-12: 3rem;
510
+ --atomix-spacing-14: 3.5rem;
511
+ --atomix-spacing-16: 4rem;
512
+ --atomix-spacing-20: 5rem;
513
+ --atomix-spacing-24: 6rem;
514
+ --atomix-spacing-28: 7rem;
515
+ --atomix-spacing-32: 8rem;
516
+ --atomix-spacing-36: 9rem;
517
+ --atomix-spacing-40: 10rem;
518
+ --atomix-spacing-44: 11rem;
519
+ --atomix-spacing-48: 12rem;
520
+ --atomix-spacing-52: 13rem;
521
+ --atomix-spacing-56: 14rem;
522
+ --atomix-spacing-60: 15rem;
523
+ --atomix-spacing-64: 16rem;
524
+ --atomix-spacing-72: 18rem;
525
+ --atomix-spacing-80: 20rem;
526
+ --atomix-spacing-90: 22.5rem;
527
+ --atomix-spacing-200: 50rem;
528
+ --atomix-red-1: #fef2f2;
529
+ --atomix-red-2: #fee2e2;
530
+ --atomix-red-3: #fecaca;
531
+ --atomix-red-4: #fca5a5;
532
+ --atomix-red-5: #f87171;
533
+ --atomix-red-6: #ef4444;
534
+ --atomix-red-7: #dc2626;
535
+ --atomix-red-8: #b91c1c;
536
+ --atomix-red-9: #991b1b;
537
+ --atomix-red-10: #7f1d1d;
538
+ --atomix-green-1: #f0fdf4;
539
+ --atomix-green-2: #dcfce7;
540
+ --atomix-green-3: #bbf7d0;
541
+ --atomix-green-4: #86efac;
542
+ --atomix-green-5: #4ade80;
543
+ --atomix-green-6: #22c55e;
544
+ --atomix-green-7: #16a34a;
545
+ --atomix-green-8: #15803d;
546
+ --atomix-green-9: #166534;
547
+ --atomix-green-10: #14532d;
548
+ --atomix-blue-1: #eff6ff;
549
+ --atomix-blue-2: #dbeafe;
550
+ --atomix-blue-3: #bfdbfe;
551
+ --atomix-blue-4: #93c5fd;
552
+ --atomix-blue-5: #60a5fa;
553
+ --atomix-blue-6: #3b82f6;
554
+ --atomix-blue-7: #2563eb;
555
+ --atomix-blue-8: #1d4ed8;
556
+ --atomix-blue-9: #1e40af;
557
+ --atomix-blue-10: #1e3a8a;
558
+ --atomix-yellow-1: #fefce8;
559
+ --atomix-yellow-2: #fef9c3;
560
+ --atomix-yellow-3: #fef08a;
561
+ --atomix-yellow-4: #fde047;
562
+ --atomix-yellow-5: #facc15;
563
+ --atomix-yellow-6: #eab308;
564
+ --atomix-yellow-7: #ca8a04;
565
+ --atomix-yellow-8: #a16207;
566
+ --atomix-yellow-9: #854d0e;
567
+ --atomix-yellow-10: #713f12;
568
+ --atomix-font-weight-light: 300;
569
+ --atomix-font-weight-normal: 400;
570
+ --atomix-font-weight-medium: 500;
571
+ --atomix-font-weight-semibold: 600;
572
+ --atomix-font-weight-bold: 700;
573
+ --atomix-font-weight-heavy: 800;
574
+ --atomix-font-weight-black: 900;
575
+ --atomix-line-height-base: 1.2;
576
+ --atomix-line-height-sm: 1.43;
577
+ --atomix-line-height-lg: 1.56;
578
+ --atomix-font-size-xl: 1.5rem;
579
+ --atomix-font-size-2xl: 2rem;
580
+ --atomix-display-1: 4rem;
581
+ --atomix-letter-spacing-h1: -1px;
582
+ --atomix-letter-spacing-h2: -1px;
583
+ --atomix-letter-spacing-h3: -1px;
584
+ --atomix-letter-spacing-h4: -0.5px;
585
+ --atomix-letter-spacing-h5: -0.5px;
586
+ --atomix-letter-spacing-h6: -0.5px;
587
+ --atomix-transition-duration-fast: 0.15s;
588
+ --atomix-transition-duration-base: 0.3s;
589
+ --atomix-transition-duration-slow: 0.5s;
590
+ --atomix-transition-duration-slower: 0.7s;
591
+ --atomix-easing-base: cubic-bezier(0.23, 1, 0.32, 1);
592
+ --atomix-easing-ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
593
+ --atomix-easing-ease-out: cubic-bezier(0, 0, 0.2, 1);
594
+ --atomix-easing-ease-in: cubic-bezier(0.4, 0, 1, 1);
595
+ --atomix-easing-ease-linear: linear;
596
+ --atomix-transition-fast: all 0.15s cubic-bezier(0.23, 1, 0.32, 1);
597
+ --atomix-transition-base: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
598
+ --atomix-transition-slow: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
599
+ --atomix-z-n1: -1;
600
+ --atomix-z-0: 0;
601
+ --atomix-z-1: 1;
602
+ --atomix-z-2: 2;
603
+ --atomix-z-3: 3;
604
+ --atomix-z-4: 4;
605
+ --atomix-z-5: 5;
606
+ --atomix-z-dropdown: 1000;
607
+ --atomix-z-sticky: 1020;
608
+ --atomix-z-fixed: 1030;
609
+ --atomix-z-modal: 1040;
610
+ --atomix-z-popover: 1050;
611
+ --atomix-z-tooltip: 1060;
612
+ --atomix-z-drawer: 1070;
613
+ --atomix-breakpoint-xs: 0;
614
+ --atomix-breakpoint-sm: 576px;
615
+ --atomix-breakpoint-md: 768px;
616
+ --atomix-breakpoint-lg: 992px;
617
+ --atomix-breakpoint-xl: 1200px;
618
+ --atomix-breakpoint-xxl: 1440px;
619
+ --atomix-focus-ring-width: 3px;
620
+ --atomix-focus-ring-offset: 2px;
621
+ --atomix-focus-ring-opacity: 0.25;
495
622
  }
496
623
  [data-atomix-color-mode=dark] {
497
624
  color-scheme: dark;
@@ -505,6 +632,14 @@ summary {
505
632
  --atomix-success: #22c55e;
506
633
  --atomix-warning: #eab308;
507
634
  --atomix-info: #3b82f6;
635
+ --atomix-primary-rgb: 124, 58, 237;
636
+ --atomix-secondary-rgb: 75, 85, 99;
637
+ --atomix-light-rgb: 249, 250, 251;
638
+ --atomix-dark-rgb: 55, 65, 81;
639
+ --atomix-error-rgb: 239, 68, 68;
640
+ --atomix-success-rgb: 34, 197, 94;
641
+ --atomix-warning-rgb: 234, 179, 8;
642
+ --atomix-info-rgb: 59, 130, 246;
508
643
  --atomix-primary-text-emphasis: #ffffff;
509
644
  --atomix-secondary-text-emphasis: #e5e7eb;
510
645
  --atomix-tertiary-text-emphasis: #d1d5db;
@@ -563,6 +698,7 @@ summary {
563
698
  --atomix-link-color: #b88cef;
564
699
  --atomix-link-color-rgb: 184, 140, 239;
565
700
  --atomix-link-hover-color: rgb(142.5381679389, 72.8435114504, 229.6564885496);
701
+ --atomix-link-hover-color-rgb: 142.5381679389, 72.8435114504, 229.6564885496;
566
702
  --atomix-code-color: #f87171;
567
703
  --atomix-border-color: #374151;
568
704
  --atomix-border-color-translucent: rgba(255, 255, 255, 0.15);
@@ -1730,7 +1866,7 @@ a, a:hover {
1730
1866
  position: relative;
1731
1867
  --atomix-glass-radius: var(--atomix-radius-md, 16px);
1732
1868
  --atomix-glass-transform: none;
1733
- --atomix-glass-transition: all var(--atomix-transition-duration, 0s) ease-out;
1869
+ --atomix-glass-transition: all var(--atomix-transition-duration, 0.15s) ease-out;
1734
1870
  --atomix-glass-position: absolute;
1735
1871
  --atomix-glass-container-width: 100%;
1736
1872
  --atomix-glass-container-height: 100%;
@@ -1837,10 +1973,14 @@ a, a:hover {
1837
1973
  height: 100%;
1838
1974
  pointer-events: none;
1839
1975
  }
1976
+ .c-atomix-glass__filter svg {
1977
+ border-radius: var(--atomix-glass-radius);
1978
+ }
1840
1979
  .c-atomix-glass__filter-overlay {
1841
1980
  position: absolute;
1842
1981
  inset: 0;
1843
1982
  pointer-events: none;
1983
+ border-radius: var(--atomix-glass-radius);
1844
1984
  }
1845
1985
  .c-atomix-glass__filter-shadow {
1846
1986
  position: absolute;
@@ -1851,6 +1991,7 @@ a, a:hover {
1851
1991
  position: relative;
1852
1992
  width: var(--atomix-glass-container-width);
1853
1993
  height: var(--atomix-glass-container-height);
1994
+ border-radius: var(--atomix-glass-radius);
1854
1995
  }
1855
1996
  .c-atomix-glass__background-layer {
1856
1997
  position: absolute;
@@ -1858,7 +1999,6 @@ a, a:hover {
1858
1999
  border-radius: var(--atomix-glass-radius);
1859
2000
  transform: var(--atomix-glass-transform);
1860
2001
  transition: var(--atomix-glass-transition);
1861
- will-change: transform;
1862
2002
  }
1863
2003
  .c-atomix-glass__background-layer--dark {
1864
2004
  background-color: var(--atomix-gray-9, #1f2937);
@@ -1914,7 +2054,7 @@ a, a:hover {
1914
2054
  --atomix-tag-border-radius: 50rem;
1915
2055
  --atomix-tag-bg-color: var(--atomix-body-bg);
1916
2056
  --atomix-tag-icon-size: 1rem;
1917
- --atomix-tag-inner-items-gap: 0.375rem;
2057
+ --atomix-tag-inner-items-gap: ;
1918
2058
  display: inline-flex;
1919
2059
  align-items: center;
1920
2060
  gap: var(--atomix-tag-inner-items-gap);
@@ -1942,7 +2082,7 @@ a, a:hover {
1942
2082
  }
1943
2083
  .c-badge--glass {
1944
2084
  background-color: color-mix(in srgb, var(--atomix-tag-bg-color) 20%, transparent);
1945
- border: 1px solid color-mix(in srgb, var(--atomix-tag-color) 90%, transparent);
2085
+ border: 1px solid color-mix(in srgb, var(--atomix-tag-color) 50%, transparent);
1946
2086
  }
1947
2087
  .c-badge--primary {
1948
2088
  --atomix-tag-bg-color: var(--atomix-brand-bg-subtle);
@@ -2909,7 +3049,7 @@ a, a:hover {
2909
3049
  --atomix-card-bg: var(--atomix-primary-bg-subtle);
2910
3050
  --atomix-card-bg-hover: var(--atomix-secondary-bg-subtle);
2911
3051
  --atomix-card-icon-size: 1.25rem;
2912
- --atomix-card-icon-padding: 0.375rem;
3052
+ --atomix-card-icon-padding: ;
2913
3053
  --atomix-card-icon-bg: var(--atomix-brand-bg-subtle);
2914
3054
  --atomix-card-icon-color: var(--atomix-brand-text-emphasis);
2915
3055
  --atomix-card-width: 100%;
@@ -2975,6 +3115,35 @@ a, a:hover {
2975
3115
  padding: var(--atomix-card-icon-padding);
2976
3116
  border-radius: 50rem;
2977
3117
  }
3118
+ .c-card__footer {
3119
+ margin-top: var(--atomix-card-spacer-y);
3120
+ padding-top: var(--atomix-card-spacer-y);
3121
+ border-top: 1px solid var(--atomix-card-border-color);
3122
+ }
3123
+ .c-card__footer--align-start {
3124
+ display: flex;
3125
+ justify-content: flex-start;
3126
+ align-items: center;
3127
+ }
3128
+ .c-card__footer--align-center {
3129
+ display: flex;
3130
+ justify-content: center;
3131
+ align-items: center;
3132
+ }
3133
+ .c-card__footer--align-end {
3134
+ display: flex;
3135
+ justify-content: flex-end;
3136
+ align-items: center;
3137
+ }
3138
+ .c-card__footer--align-between {
3139
+ display: flex;
3140
+ justify-content: space-between;
3141
+ align-items: center;
3142
+ }
3143
+ .c-card__body--scrollable {
3144
+ overflow-y: auto;
3145
+ overflow-x: hidden;
3146
+ }
2978
3147
  .c-card:focus, .c-card.is-active {
2979
3148
  --atomix-card-border-color: var(--atomix-brand-border-subtle);
2980
3149
  }
@@ -3103,6 +3272,31 @@ a, a:hover {
3103
3272
  .c-card--interactive:active:not(.c-card--interactive--disabled) {
3104
3273
  transform: translateY(0);
3105
3274
  }
3275
+ .c-card--hoverable {
3276
+ cursor: pointer;
3277
+ transition: all 0.2s ease-in-out;
3278
+ }
3279
+ .c-card--hoverable:hover:not(.c-card--hoverable--disabled) {
3280
+ transform: translateY(-2px);
3281
+ }
3282
+ .c-card--hoverable:active:not(.c-card--hoverable--disabled) {
3283
+ transform: translateY(0);
3284
+ }
3285
+ .c-card--hoverable--hover-elevation-none:hover:not(.c-card--hoverable--disabled) {
3286
+ box-shadow: none;
3287
+ }
3288
+ .c-card--hoverable--hover-elevation-sm:hover:not(.c-card--hoverable--disabled) {
3289
+ box-shadow: var(--atomix-box-shadow-sm);
3290
+ }
3291
+ .c-card--hoverable--hover-elevation-md:hover:not(.c-card--hoverable--disabled) {
3292
+ box-shadow: var(--atomix-box-shadow-md);
3293
+ }
3294
+ .c-card--hoverable--hover-elevation-lg:hover:not(.c-card--hoverable--disabled) {
3295
+ box-shadow: var(--atomix-box-shadow-lg);
3296
+ }
3297
+ .c-card--hoverable--hover-elevation-xl:hover:not(.c-card--hoverable--disabled) {
3298
+ box-shadow: var(--atomix-box-shadow-xl);
3299
+ }
3106
3300
  .c-card--primary {
3107
3301
  --atomix-card-bg: var(--atomix-brand-bg-subtle);
3108
3302
  --atomix-card-bg-hover: var(--atomix-brand-bg-subtle);
@@ -3201,7 +3395,7 @@ a, a:hover {
3201
3395
  .c-card {
3202
3396
  transition: none;
3203
3397
  }
3204
- .c-card--interactive:hover:not(.c-card--disabled) {
3398
+ .c-card--interactive:hover:not(.c-card--disabled), .c-card--hoverable:hover:not(.c-card--disabled) {
3205
3399
  transform: none;
3206
3400
  }
3207
3401
  .c-card__spinner {
@@ -3442,7 +3636,6 @@ a, a:hover {
3442
3636
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
3443
3637
  position: relative;
3444
3638
  overflow: hidden;
3445
- font-size: 0.875rem;
3446
3639
  }
3447
3640
  .c-chart__action::before {
3448
3641
  content: "";
@@ -3602,7 +3795,7 @@ a, a:hover {
3602
3795
  display: flex;
3603
3796
  align-items: center;
3604
3797
  justify-content: space-between;
3605
- padding: 0.375rem 0;
3798
+ padding: 0;
3606
3799
  gap: 0.75rem;
3607
3800
  }
3608
3801
  .c-chart__settings-menu-item--info {
@@ -5172,6 +5365,9 @@ a, a:hover {
5172
5365
  --atomix-dropdown-link-hover-color: var(--atomix-dark-text-emphasis);
5173
5366
  --atomix-dropdown-link-hover-bg: var(--atomix-dark-bg-subtle);
5174
5367
  }
5368
+ .c-dropdown--glass .c-dropdown__menu-inner {
5369
+ box-shadow: none;
5370
+ }
5175
5371
  .c-dropdown.is-open .c-dropdown__toggle-icon {
5176
5372
  transform: rotate(-180deg);
5177
5373
  }
@@ -6751,7 +6947,7 @@ a, a:hover {
6751
6947
  --atomix-input-font-size: 0.875rem;
6752
6948
  --atomix-input-line-height: 20px;
6753
6949
  --atomix-input-padding-x: 0.75rem;
6754
- --atomix-input-padding-y: 0.625rem;
6950
+ --atomix-input-padding-y: ;
6755
6951
  --atomix-input-border-color: var(--atomix-primary-border-subtle);
6756
6952
  --atomix-input-border-width: var(--atomix-border-width);
6757
6953
  --atomix-input-border-radius: 0.75rem;
@@ -6797,7 +6993,7 @@ a, a:hover {
6797
6993
  --atomix-input-font-size: 0.875rem;
6798
6994
  --atomix-input-line-height: 20px;
6799
6995
  --atomix-input-padding-x: 0.75rem;
6800
- --atomix-input-padding-y: 0.375rem;
6996
+ --atomix-input-padding-y: ;
6801
6997
  }
6802
6998
  .c-input--sm.c-input--textarea {
6803
6999
  --atomix-input-textarea-height: 80px;
@@ -7557,7 +7753,7 @@ a, a:hover {
7557
7753
  --atomix-modal-sub-margin-top: 0.25rem;
7558
7754
  --atomix-modal-sub-color: var(--atomix-tertiary-text-emphasis);
7559
7755
  --atomix-modal-sub-font-size: 0.875rem;
7560
- --atomix-modal-footer-items-gap: 2rem;
7756
+ --atomix-modal-footer-items-gap: 0.5rem;
7561
7757
  --atomix-modal-backdrop-bg: var(--atomix-invert-bg-subtle);
7562
7758
  --atomix-modal-backdrop-opacity: 0.5;
7563
7759
  --atomix-modal-backdrop-blur: 10px;
@@ -7659,8 +7855,12 @@ a, a:hover {
7659
7855
  .c-modal--xl {
7660
7856
  --atomix-modal-width: var(--atomix-modal-xl);
7661
7857
  }
7662
- .c-modal--glass .c-modal .c-modal--glass .c-modal__content {
7858
+ .c-modal--glass .c-modal__content {
7663
7859
  background-color: color-mix(in srgb, var(--atomix-modal-content-bg) 50%, transparent);
7860
+ box-shadow: none;
7861
+ border-radius: inherit;
7862
+ width: var(--atomix-modal-width);
7863
+ height: 100%;
7664
7864
  }
7665
7865
  .c-modal.is-open .c-modal__backdrop {
7666
7866
  opacity: var(--atomix-modal-backdrop-opacity);
@@ -7811,7 +8011,7 @@ a, a:hover {
7811
8011
  --atomix-navbar-border-width: var(--atomix-border-width);
7812
8012
  --atomix-navbar-border-color: var(--atomix-primary-border-subtle);
7813
8013
  --atomix-navbar-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
7814
- --atomix-navbar-brand-margin-end: 1.875rem;
8014
+ --atomix-navbar-brand-margin-end: ;
7815
8015
  --atomix-navbar-brand-font-size: 1.25rem;
7816
8016
  --atomix-navbar-brand-font-weight: 700;
7817
8017
  --atomix-navbar-brand-color: var(--atomix-body-color);
@@ -8181,7 +8381,7 @@ a, a:hover {
8181
8381
  --atomix-callout-title-font-size: 1rem;
8182
8382
  --atomix-callout-title-font-weight: 600;
8183
8383
  --atomix-callout-title-color: var(--atomix-body-color);
8184
- --atomix-callout-text-font-size: 0.875rem;
8384
+ --atomix-callout-text-font-size: ;
8185
8385
  --atomix-callout-text-font-weight: 400;
8186
8386
  --atomix-callout-text-color: var(--atomix-body-color);
8187
8387
  --atomix-callout-message-spacer: 0.75rem;
@@ -8636,6 +8836,10 @@ a, a:hover {
8636
8836
  left: calc(var(--atomix-popover-arrow-offset) * -1);
8637
8837
  transform: translateY(-50%) rotate(45deg);
8638
8838
  }
8839
+ .c-popover--glass .c-popover__content-inner {
8840
+ background-color: color-mix(in srgb, var(--atomix-popover-bg) 50%, transparent);
8841
+ box-shadow: none;
8842
+ }
8639
8843
  .c-product-review {
8640
8844
  --atomix-product-review-padding: 1.5rem;
8641
8845
  --atomix-product-review-border-radius: var(--atomix-border-radius);
@@ -10513,7 +10717,7 @@ a, a:hover {
10513
10717
  --atomix-upload-loader-text-margin-top: 0.3125rem;
10514
10718
  --atomix-upload-loader-color: var(--atomix-primary);
10515
10719
  --atomix-upload-loader-bar-height: 0.625rem;
10516
- --atomix-upload-loader-bar-margin-top: 0.625rem;
10720
+ --atomix-upload-loader-bar-margin-top: ;
10517
10721
  --atomix-upload-loader-bg-opacity: 1;
10518
10722
  --atomix-upload-loader-progress: 39%;
10519
10723
  --atomix-upload-content-margin-left: 1rem;
@@ -10692,7 +10896,7 @@ a, a:hover {
10692
10896
  .c-upload--large {
10693
10897
  --atomix-upload-width: 43.75rem;
10694
10898
  --atomix-upload-inner-padding-x: 1.25rem;
10695
- --atomix-upload-inner-padding-y: 1.375rem;
10899
+ --atomix-upload-inner-padding-y: ;
10696
10900
  --atomix-upload-title-margin-top: 0;
10697
10901
  --atomix-upload-btn-margin-top: 0;
10698
10902
  --atomix-upload-helper-text-margin-top: 0;
@@ -13089,19 +13293,19 @@ body.is-open-photoviewer {
13089
13293
  .u-m-1 {
13090
13294
  margin: 0.25rem;
13091
13295
  }
13092
- .u-m-1\.5 {
13296
+ .u-m-px-6 {
13093
13297
  margin: 0.375rem;
13094
13298
  }
13095
13299
  .u-m-2 {
13096
13300
  margin: 0.5rem;
13097
13301
  }
13098
- .u-m-2\.5 {
13302
+ .u-m-px-10 {
13099
13303
  margin: 0.625rem;
13100
13304
  }
13101
13305
  .u-m-3 {
13102
13306
  margin: 0.75rem;
13103
13307
  }
13104
- .u-m-3\.5 {
13308
+ .u-m-px-14 {
13105
13309
  margin: 0.875rem;
13106
13310
  }
13107
13311
  .u-m-4 {
@@ -13110,7 +13314,7 @@ body.is-open-photoviewer {
13110
13314
  .u-m-5 {
13111
13315
  margin: 1.25rem;
13112
13316
  }
13113
- .u-m-5\.5 {
13317
+ .u-m-px-22 {
13114
13318
  margin: 1.375rem;
13115
13319
  }
13116
13320
  .u-m-6 {
@@ -13119,7 +13323,7 @@ body.is-open-photoviewer {
13119
13323
  .u-m-7 {
13120
13324
  margin: 1.75rem;
13121
13325
  }
13122
- .u-m-7\.5 {
13326
+ .u-m-px-30 {
13123
13327
  margin: 1.875rem;
13124
13328
  }
13125
13329
  .u-m-8 {
@@ -13202,7 +13406,7 @@ body.is-open-photoviewer {
13202
13406
  margin-right: 0.25rem;
13203
13407
  margin-left: 0.25rem;
13204
13408
  }
13205
- .u-mx-1\.5 {
13409
+ .u-mx-px-6 {
13206
13410
  margin-right: 0.375rem;
13207
13411
  margin-left: 0.375rem;
13208
13412
  }
@@ -13210,7 +13414,7 @@ body.is-open-photoviewer {
13210
13414
  margin-right: 0.5rem;
13211
13415
  margin-left: 0.5rem;
13212
13416
  }
13213
- .u-mx-2\.5 {
13417
+ .u-mx-px-10 {
13214
13418
  margin-right: 0.625rem;
13215
13419
  margin-left: 0.625rem;
13216
13420
  }
@@ -13218,7 +13422,7 @@ body.is-open-photoviewer {
13218
13422
  margin-right: 0.75rem;
13219
13423
  margin-left: 0.75rem;
13220
13424
  }
13221
- .u-mx-3\.5 {
13425
+ .u-mx-px-14 {
13222
13426
  margin-right: 0.875rem;
13223
13427
  margin-left: 0.875rem;
13224
13428
  }
@@ -13230,7 +13434,7 @@ body.is-open-photoviewer {
13230
13434
  margin-right: 1.25rem;
13231
13435
  margin-left: 1.25rem;
13232
13436
  }
13233
- .u-mx-5\.5 {
13437
+ .u-mx-px-22 {
13234
13438
  margin-right: 1.375rem;
13235
13439
  margin-left: 1.375rem;
13236
13440
  }
@@ -13242,7 +13446,7 @@ body.is-open-photoviewer {
13242
13446
  margin-right: 1.75rem;
13243
13447
  margin-left: 1.75rem;
13244
13448
  }
13245
- .u-mx-7\.5 {
13449
+ .u-mx-px-30 {
13246
13450
  margin-right: 1.875rem;
13247
13451
  margin-left: 1.875rem;
13248
13452
  }
@@ -13350,7 +13554,7 @@ body.is-open-photoviewer {
13350
13554
  margin-top: 0.25rem;
13351
13555
  margin-bottom: 0.25rem;
13352
13556
  }
13353
- .u-my-1\.5 {
13557
+ .u-my-px-6 {
13354
13558
  margin-top: 0.375rem;
13355
13559
  margin-bottom: 0.375rem;
13356
13560
  }
@@ -13358,7 +13562,7 @@ body.is-open-photoviewer {
13358
13562
  margin-top: 0.5rem;
13359
13563
  margin-bottom: 0.5rem;
13360
13564
  }
13361
- .u-my-2\.5 {
13565
+ .u-my-px-10 {
13362
13566
  margin-top: 0.625rem;
13363
13567
  margin-bottom: 0.625rem;
13364
13568
  }
@@ -13366,7 +13570,7 @@ body.is-open-photoviewer {
13366
13570
  margin-top: 0.75rem;
13367
13571
  margin-bottom: 0.75rem;
13368
13572
  }
13369
- .u-my-3\.5 {
13573
+ .u-my-px-14 {
13370
13574
  margin-top: 0.875rem;
13371
13575
  margin-bottom: 0.875rem;
13372
13576
  }
@@ -13378,7 +13582,7 @@ body.is-open-photoviewer {
13378
13582
  margin-top: 1.25rem;
13379
13583
  margin-bottom: 1.25rem;
13380
13584
  }
13381
- .u-my-5\.5 {
13585
+ .u-my-px-22 {
13382
13586
  margin-top: 1.375rem;
13383
13587
  margin-bottom: 1.375rem;
13384
13588
  }
@@ -13390,7 +13594,7 @@ body.is-open-photoviewer {
13390
13594
  margin-top: 1.75rem;
13391
13595
  margin-bottom: 1.75rem;
13392
13596
  }
13393
- .u-my-7\.5 {
13597
+ .u-my-px-30 {
13394
13598
  margin-top: 1.875rem;
13395
13599
  margin-bottom: 1.875rem;
13396
13600
  }
@@ -13496,19 +13700,19 @@ body.is-open-photoviewer {
13496
13700
  .u-mt-1 {
13497
13701
  margin-top: 0.25rem;
13498
13702
  }
13499
- .u-mt-1\.5 {
13703
+ .u-mt-px-6 {
13500
13704
  margin-top: 0.375rem;
13501
13705
  }
13502
13706
  .u-mt-2 {
13503
13707
  margin-top: 0.5rem;
13504
13708
  }
13505
- .u-mt-2\.5 {
13709
+ .u-mt-px-10 {
13506
13710
  margin-top: 0.625rem;
13507
13711
  }
13508
13712
  .u-mt-3 {
13509
13713
  margin-top: 0.75rem;
13510
13714
  }
13511
- .u-mt-3\.5 {
13715
+ .u-mt-px-14 {
13512
13716
  margin-top: 0.875rem;
13513
13717
  }
13514
13718
  .u-mt-4 {
@@ -13517,7 +13721,7 @@ body.is-open-photoviewer {
13517
13721
  .u-mt-5 {
13518
13722
  margin-top: 1.25rem;
13519
13723
  }
13520
- .u-mt-5\.5 {
13724
+ .u-mt-px-22 {
13521
13725
  margin-top: 1.375rem;
13522
13726
  }
13523
13727
  .u-mt-6 {
@@ -13526,7 +13730,7 @@ body.is-open-photoviewer {
13526
13730
  .u-mt-7 {
13527
13731
  margin-top: 1.75rem;
13528
13732
  }
13529
- .u-mt-7\.5 {
13733
+ .u-mt-px-30 {
13530
13734
  margin-top: 1.875rem;
13531
13735
  }
13532
13736
  .u-mt-8 {
@@ -13607,19 +13811,19 @@ body.is-open-photoviewer {
13607
13811
  .u-me-1 {
13608
13812
  margin-right: 0.25rem;
13609
13813
  }
13610
- .u-me-1\.5 {
13814
+ .u-me-px-6 {
13611
13815
  margin-right: 0.375rem;
13612
13816
  }
13613
13817
  .u-me-2 {
13614
13818
  margin-right: 0.5rem;
13615
13819
  }
13616
- .u-me-2\.5 {
13820
+ .u-me-px-10 {
13617
13821
  margin-right: 0.625rem;
13618
13822
  }
13619
13823
  .u-me-3 {
13620
13824
  margin-right: 0.75rem;
13621
13825
  }
13622
- .u-me-3\.5 {
13826
+ .u-me-px-14 {
13623
13827
  margin-right: 0.875rem;
13624
13828
  }
13625
13829
  .u-me-4 {
@@ -13628,7 +13832,7 @@ body.is-open-photoviewer {
13628
13832
  .u-me-5 {
13629
13833
  margin-right: 1.25rem;
13630
13834
  }
13631
- .u-me-5\.5 {
13835
+ .u-me-px-22 {
13632
13836
  margin-right: 1.375rem;
13633
13837
  }
13634
13838
  .u-me-6 {
@@ -13637,7 +13841,7 @@ body.is-open-photoviewer {
13637
13841
  .u-me-7 {
13638
13842
  margin-right: 1.75rem;
13639
13843
  }
13640
- .u-me-7\.5 {
13844
+ .u-me-px-30 {
13641
13845
  margin-right: 1.875rem;
13642
13846
  }
13643
13847
  .u-me-8 {
@@ -13718,19 +13922,19 @@ body.is-open-photoviewer {
13718
13922
  .u-mb-1 {
13719
13923
  margin-bottom: 0.25rem;
13720
13924
  }
13721
- .u-mb-1\.5 {
13925
+ .u-mb-px-6 {
13722
13926
  margin-bottom: 0.375rem;
13723
13927
  }
13724
13928
  .u-mb-2 {
13725
13929
  margin-bottom: 0.5rem;
13726
13930
  }
13727
- .u-mb-2\.5 {
13931
+ .u-mb-px-10 {
13728
13932
  margin-bottom: 0.625rem;
13729
13933
  }
13730
13934
  .u-mb-3 {
13731
13935
  margin-bottom: 0.75rem;
13732
13936
  }
13733
- .u-mb-3\.5 {
13937
+ .u-mb-px-14 {
13734
13938
  margin-bottom: 0.875rem;
13735
13939
  }
13736
13940
  .u-mb-4 {
@@ -13739,7 +13943,7 @@ body.is-open-photoviewer {
13739
13943
  .u-mb-5 {
13740
13944
  margin-bottom: 1.25rem;
13741
13945
  }
13742
- .u-mb-5\.5 {
13946
+ .u-mb-px-22 {
13743
13947
  margin-bottom: 1.375rem;
13744
13948
  }
13745
13949
  .u-mb-6 {
@@ -13748,7 +13952,7 @@ body.is-open-photoviewer {
13748
13952
  .u-mb-7 {
13749
13953
  margin-bottom: 1.75rem;
13750
13954
  }
13751
- .u-mb-7\.5 {
13955
+ .u-mb-px-30 {
13752
13956
  margin-bottom: 1.875rem;
13753
13957
  }
13754
13958
  .u-mb-8 {
@@ -13829,19 +14033,19 @@ body.is-open-photoviewer {
13829
14033
  .u-ms-1 {
13830
14034
  margin-left: 0.25rem;
13831
14035
  }
13832
- .u-ms-1\.5 {
14036
+ .u-ms-px-6 {
13833
14037
  margin-left: 0.375rem;
13834
14038
  }
13835
14039
  .u-ms-2 {
13836
14040
  margin-left: 0.5rem;
13837
14041
  }
13838
- .u-ms-2\.5 {
14042
+ .u-ms-px-10 {
13839
14043
  margin-left: 0.625rem;
13840
14044
  }
13841
14045
  .u-ms-3 {
13842
14046
  margin-left: 0.75rem;
13843
14047
  }
13844
- .u-ms-3\.5 {
14048
+ .u-ms-px-14 {
13845
14049
  margin-left: 0.875rem;
13846
14050
  }
13847
14051
  .u-ms-4 {
@@ -13850,7 +14054,7 @@ body.is-open-photoviewer {
13850
14054
  .u-ms-5 {
13851
14055
  margin-left: 1.25rem;
13852
14056
  }
13853
- .u-ms-5\.5 {
14057
+ .u-ms-px-22 {
13854
14058
  margin-left: 1.375rem;
13855
14059
  }
13856
14060
  .u-ms-6 {
@@ -13859,7 +14063,7 @@ body.is-open-photoviewer {
13859
14063
  .u-ms-7 {
13860
14064
  margin-left: 1.75rem;
13861
14065
  }
13862
- .u-ms-7\.5 {
14066
+ .u-ms-px-30 {
13863
14067
  margin-left: 1.875rem;
13864
14068
  }
13865
14069
  .u-ms-8 {
@@ -13940,19 +14144,19 @@ body.is-open-photoviewer {
13940
14144
  .u-p-1 {
13941
14145
  padding: 0.25rem;
13942
14146
  }
13943
- .u-p-1\.5 {
14147
+ .u-p-px-6 {
13944
14148
  padding: 0.375rem;
13945
14149
  }
13946
14150
  .u-p-2 {
13947
14151
  padding: 0.5rem;
13948
14152
  }
13949
- .u-p-2\.5 {
14153
+ .u-p-px-10 {
13950
14154
  padding: 0.625rem;
13951
14155
  }
13952
14156
  .u-p-3 {
13953
14157
  padding: 0.75rem;
13954
14158
  }
13955
- .u-p-3\.5 {
14159
+ .u-p-px-14 {
13956
14160
  padding: 0.875rem;
13957
14161
  }
13958
14162
  .u-p-4 {
@@ -13961,7 +14165,7 @@ body.is-open-photoviewer {
13961
14165
  .u-p-5 {
13962
14166
  padding: 1.25rem;
13963
14167
  }
13964
- .u-p-5\.5 {
14168
+ .u-p-px-22 {
13965
14169
  padding: 1.375rem;
13966
14170
  }
13967
14171
  .u-p-6 {
@@ -13970,7 +14174,7 @@ body.is-open-photoviewer {
13970
14174
  .u-p-7 {
13971
14175
  padding: 1.75rem;
13972
14176
  }
13973
- .u-p-7\.5 {
14177
+ .u-p-px-30 {
13974
14178
  padding: 1.875rem;
13975
14179
  }
13976
14180
  .u-p-8 {
@@ -14050,7 +14254,7 @@ body.is-open-photoviewer {
14050
14254
  padding-right: 0.25rem;
14051
14255
  padding-left: 0.25rem;
14052
14256
  }
14053
- .u-px-1\.5 {
14257
+ .u-px-px-6 {
14054
14258
  padding-right: 0.375rem;
14055
14259
  padding-left: 0.375rem;
14056
14260
  }
@@ -14058,7 +14262,7 @@ body.is-open-photoviewer {
14058
14262
  padding-right: 0.5rem;
14059
14263
  padding-left: 0.5rem;
14060
14264
  }
14061
- .u-px-2\.5 {
14265
+ .u-px-px-10 {
14062
14266
  padding-right: 0.625rem;
14063
14267
  padding-left: 0.625rem;
14064
14268
  }
@@ -14066,7 +14270,7 @@ body.is-open-photoviewer {
14066
14270
  padding-right: 0.75rem;
14067
14271
  padding-left: 0.75rem;
14068
14272
  }
14069
- .u-px-3\.5 {
14273
+ .u-px-px-14 {
14070
14274
  padding-right: 0.875rem;
14071
14275
  padding-left: 0.875rem;
14072
14276
  }
@@ -14078,7 +14282,7 @@ body.is-open-photoviewer {
14078
14282
  padding-right: 1.25rem;
14079
14283
  padding-left: 1.25rem;
14080
14284
  }
14081
- .u-px-5\.5 {
14285
+ .u-px-px-22 {
14082
14286
  padding-right: 1.375rem;
14083
14287
  padding-left: 1.375rem;
14084
14288
  }
@@ -14090,7 +14294,7 @@ body.is-open-photoviewer {
14090
14294
  padding-right: 1.75rem;
14091
14295
  padding-left: 1.75rem;
14092
14296
  }
14093
- .u-px-7\.5 {
14297
+ .u-px-px-30 {
14094
14298
  padding-right: 1.875rem;
14095
14299
  padding-left: 1.875rem;
14096
14300
  }
@@ -14194,7 +14398,7 @@ body.is-open-photoviewer {
14194
14398
  padding-top: 0.25rem;
14195
14399
  padding-bottom: 0.25rem;
14196
14400
  }
14197
- .u-py-1\.5 {
14401
+ .u-py-px-6 {
14198
14402
  padding-top: 0.375rem;
14199
14403
  padding-bottom: 0.375rem;
14200
14404
  }
@@ -14202,7 +14406,7 @@ body.is-open-photoviewer {
14202
14406
  padding-top: 0.5rem;
14203
14407
  padding-bottom: 0.5rem;
14204
14408
  }
14205
- .u-py-2\.5 {
14409
+ .u-py-px-10 {
14206
14410
  padding-top: 0.625rem;
14207
14411
  padding-bottom: 0.625rem;
14208
14412
  }
@@ -14210,7 +14414,7 @@ body.is-open-photoviewer {
14210
14414
  padding-top: 0.75rem;
14211
14415
  padding-bottom: 0.75rem;
14212
14416
  }
14213
- .u-py-3\.5 {
14417
+ .u-py-px-14 {
14214
14418
  padding-top: 0.875rem;
14215
14419
  padding-bottom: 0.875rem;
14216
14420
  }
@@ -14222,7 +14426,7 @@ body.is-open-photoviewer {
14222
14426
  padding-top: 1.25rem;
14223
14427
  padding-bottom: 1.25rem;
14224
14428
  }
14225
- .u-py-5\.5 {
14429
+ .u-py-px-22 {
14226
14430
  padding-top: 1.375rem;
14227
14431
  padding-bottom: 1.375rem;
14228
14432
  }
@@ -14234,7 +14438,7 @@ body.is-open-photoviewer {
14234
14438
  padding-top: 1.75rem;
14235
14439
  padding-bottom: 1.75rem;
14236
14440
  }
14237
- .u-py-7\.5 {
14441
+ .u-py-px-30 {
14238
14442
  padding-top: 1.875rem;
14239
14443
  padding-bottom: 1.875rem;
14240
14444
  }
@@ -14336,19 +14540,19 @@ body.is-open-photoviewer {
14336
14540
  .u-pt-1 {
14337
14541
  padding-top: 0.25rem;
14338
14542
  }
14339
- .u-pt-1\.5 {
14543
+ .u-pt-px-6 {
14340
14544
  padding-top: 0.375rem;
14341
14545
  }
14342
14546
  .u-pt-2 {
14343
14547
  padding-top: 0.5rem;
14344
14548
  }
14345
- .u-pt-2\.5 {
14549
+ .u-pt-px-10 {
14346
14550
  padding-top: 0.625rem;
14347
14551
  }
14348
14552
  .u-pt-3 {
14349
14553
  padding-top: 0.75rem;
14350
14554
  }
14351
- .u-pt-3\.5 {
14555
+ .u-pt-px-14 {
14352
14556
  padding-top: 0.875rem;
14353
14557
  }
14354
14558
  .u-pt-4 {
@@ -14357,7 +14561,7 @@ body.is-open-photoviewer {
14357
14561
  .u-pt-5 {
14358
14562
  padding-top: 1.25rem;
14359
14563
  }
14360
- .u-pt-5\.5 {
14564
+ .u-pt-px-22 {
14361
14565
  padding-top: 1.375rem;
14362
14566
  }
14363
14567
  .u-pt-6 {
@@ -14366,7 +14570,7 @@ body.is-open-photoviewer {
14366
14570
  .u-pt-7 {
14367
14571
  padding-top: 1.75rem;
14368
14572
  }
14369
- .u-pt-7\.5 {
14573
+ .u-pt-px-30 {
14370
14574
  padding-top: 1.875rem;
14371
14575
  }
14372
14576
  .u-pt-8 {
@@ -14444,19 +14648,19 @@ body.is-open-photoviewer {
14444
14648
  .u-pe-1 {
14445
14649
  padding-right: 0.25rem;
14446
14650
  }
14447
- .u-pe-1\.5 {
14651
+ .u-pe-px-6 {
14448
14652
  padding-right: 0.375rem;
14449
14653
  }
14450
14654
  .u-pe-2 {
14451
14655
  padding-right: 0.5rem;
14452
14656
  }
14453
- .u-pe-2\.5 {
14657
+ .u-pe-px-10 {
14454
14658
  padding-right: 0.625rem;
14455
14659
  }
14456
14660
  .u-pe-3 {
14457
14661
  padding-right: 0.75rem;
14458
14662
  }
14459
- .u-pe-3\.5 {
14663
+ .u-pe-px-14 {
14460
14664
  padding-right: 0.875rem;
14461
14665
  }
14462
14666
  .u-pe-4 {
@@ -14465,7 +14669,7 @@ body.is-open-photoviewer {
14465
14669
  .u-pe-5 {
14466
14670
  padding-right: 1.25rem;
14467
14671
  }
14468
- .u-pe-5\.5 {
14672
+ .u-pe-px-22 {
14469
14673
  padding-right: 1.375rem;
14470
14674
  }
14471
14675
  .u-pe-6 {
@@ -14474,7 +14678,7 @@ body.is-open-photoviewer {
14474
14678
  .u-pe-7 {
14475
14679
  padding-right: 1.75rem;
14476
14680
  }
14477
- .u-pe-7\.5 {
14681
+ .u-pe-px-30 {
14478
14682
  padding-right: 1.875rem;
14479
14683
  }
14480
14684
  .u-pe-8 {
@@ -14552,19 +14756,19 @@ body.is-open-photoviewer {
14552
14756
  .u-pb-1 {
14553
14757
  padding-bottom: 0.25rem;
14554
14758
  }
14555
- .u-pb-1\.5 {
14759
+ .u-pb-px-6 {
14556
14760
  padding-bottom: 0.375rem;
14557
14761
  }
14558
14762
  .u-pb-2 {
14559
14763
  padding-bottom: 0.5rem;
14560
14764
  }
14561
- .u-pb-2\.5 {
14765
+ .u-pb-px-10 {
14562
14766
  padding-bottom: 0.625rem;
14563
14767
  }
14564
14768
  .u-pb-3 {
14565
14769
  padding-bottom: 0.75rem;
14566
14770
  }
14567
- .u-pb-3\.5 {
14771
+ .u-pb-px-14 {
14568
14772
  padding-bottom: 0.875rem;
14569
14773
  }
14570
14774
  .u-pb-4 {
@@ -14573,7 +14777,7 @@ body.is-open-photoviewer {
14573
14777
  .u-pb-5 {
14574
14778
  padding-bottom: 1.25rem;
14575
14779
  }
14576
- .u-pb-5\.5 {
14780
+ .u-pb-px-22 {
14577
14781
  padding-bottom: 1.375rem;
14578
14782
  }
14579
14783
  .u-pb-6 {
@@ -14582,7 +14786,7 @@ body.is-open-photoviewer {
14582
14786
  .u-pb-7 {
14583
14787
  padding-bottom: 1.75rem;
14584
14788
  }
14585
- .u-pb-7\.5 {
14789
+ .u-pb-px-30 {
14586
14790
  padding-bottom: 1.875rem;
14587
14791
  }
14588
14792
  .u-pb-8 {
@@ -14660,19 +14864,19 @@ body.is-open-photoviewer {
14660
14864
  .u-ps-1 {
14661
14865
  padding-left: 0.25rem;
14662
14866
  }
14663
- .u-ps-1\.5 {
14867
+ .u-ps-px-6 {
14664
14868
  padding-left: 0.375rem;
14665
14869
  }
14666
14870
  .u-ps-2 {
14667
14871
  padding-left: 0.5rem;
14668
14872
  }
14669
- .u-ps-2\.5 {
14873
+ .u-ps-px-10 {
14670
14874
  padding-left: 0.625rem;
14671
14875
  }
14672
14876
  .u-ps-3 {
14673
14877
  padding-left: 0.75rem;
14674
14878
  }
14675
- .u-ps-3\.5 {
14879
+ .u-ps-px-14 {
14676
14880
  padding-left: 0.875rem;
14677
14881
  }
14678
14882
  .u-ps-4 {
@@ -14681,7 +14885,7 @@ body.is-open-photoviewer {
14681
14885
  .u-ps-5 {
14682
14886
  padding-left: 1.25rem;
14683
14887
  }
14684
- .u-ps-5\.5 {
14888
+ .u-ps-px-22 {
14685
14889
  padding-left: 1.375rem;
14686
14890
  }
14687
14891
  .u-ps-6 {
@@ -14690,7 +14894,7 @@ body.is-open-photoviewer {
14690
14894
  .u-ps-7 {
14691
14895
  padding-left: 1.75rem;
14692
14896
  }
14693
- .u-ps-7\.5 {
14897
+ .u-ps-px-30 {
14694
14898
  padding-left: 1.875rem;
14695
14899
  }
14696
14900
  .u-ps-8 {
@@ -14768,19 +14972,19 @@ body.is-open-photoviewer {
14768
14972
  .u-gap-1 {
14769
14973
  gap: 0.25rem;
14770
14974
  }
14771
- .u-gap-1\.5 {
14975
+ .u-gap-px-6 {
14772
14976
  gap: 0.375rem;
14773
14977
  }
14774
14978
  .u-gap-2 {
14775
14979
  gap: 0.5rem;
14776
14980
  }
14777
- .u-gap-2\.5 {
14981
+ .u-gap-px-10 {
14778
14982
  gap: 0.625rem;
14779
14983
  }
14780
14984
  .u-gap-3 {
14781
14985
  gap: 0.75rem;
14782
14986
  }
14783
- .u-gap-3\.5 {
14987
+ .u-gap-px-14 {
14784
14988
  gap: 0.875rem;
14785
14989
  }
14786
14990
  .u-gap-4 {
@@ -14789,7 +14993,7 @@ body.is-open-photoviewer {
14789
14993
  .u-gap-5 {
14790
14994
  gap: 1.25rem;
14791
14995
  }
14792
- .u-gap-5\.5 {
14996
+ .u-gap-px-22 {
14793
14997
  gap: 1.375rem;
14794
14998
  }
14795
14999
  .u-gap-6 {
@@ -14798,7 +15002,7 @@ body.is-open-photoviewer {
14798
15002
  .u-gap-7 {
14799
15003
  gap: 1.75rem;
14800
15004
  }
14801
- .u-gap-7\.5 {
15005
+ .u-gap-px-30 {
14802
15006
  gap: 1.875rem;
14803
15007
  }
14804
15008
  .u-gap-8 {
@@ -14876,19 +15080,19 @@ body.is-open-photoviewer {
14876
15080
  .u-row-gap-1 {
14877
15081
  row-gap: 0.25rem;
14878
15082
  }
14879
- .u-row-gap-1\.5 {
15083
+ .u-row-gap-px-6 {
14880
15084
  row-gap: 0.375rem;
14881
15085
  }
14882
15086
  .u-row-gap-2 {
14883
15087
  row-gap: 0.5rem;
14884
15088
  }
14885
- .u-row-gap-2\.5 {
15089
+ .u-row-gap-px-10 {
14886
15090
  row-gap: 0.625rem;
14887
15091
  }
14888
15092
  .u-row-gap-3 {
14889
15093
  row-gap: 0.75rem;
14890
15094
  }
14891
- .u-row-gap-3\.5 {
15095
+ .u-row-gap-px-14 {
14892
15096
  row-gap: 0.875rem;
14893
15097
  }
14894
15098
  .u-row-gap-4 {
@@ -14897,7 +15101,7 @@ body.is-open-photoviewer {
14897
15101
  .u-row-gap-5 {
14898
15102
  row-gap: 1.25rem;
14899
15103
  }
14900
- .u-row-gap-5\.5 {
15104
+ .u-row-gap-px-22 {
14901
15105
  row-gap: 1.375rem;
14902
15106
  }
14903
15107
  .u-row-gap-6 {
@@ -14906,7 +15110,7 @@ body.is-open-photoviewer {
14906
15110
  .u-row-gap-7 {
14907
15111
  row-gap: 1.75rem;
14908
15112
  }
14909
- .u-row-gap-7\.5 {
15113
+ .u-row-gap-px-30 {
14910
15114
  row-gap: 1.875rem;
14911
15115
  }
14912
15116
  .u-row-gap-8 {
@@ -14986,7 +15190,7 @@ body.is-open-photoviewer {
14986
15190
  -moz-column-gap: 0.25rem;
14987
15191
  column-gap: 0.25rem;
14988
15192
  }
14989
- .u-column-gap-1\.5 {
15193
+ .u-column-gap-px-6 {
14990
15194
  -moz-column-gap: 0.375rem;
14991
15195
  column-gap: 0.375rem;
14992
15196
  }
@@ -14994,7 +15198,7 @@ body.is-open-photoviewer {
14994
15198
  -moz-column-gap: 0.5rem;
14995
15199
  column-gap: 0.5rem;
14996
15200
  }
14997
- .u-column-gap-2\.5 {
15201
+ .u-column-gap-px-10 {
14998
15202
  -moz-column-gap: 0.625rem;
14999
15203
  column-gap: 0.625rem;
15000
15204
  }
@@ -15002,7 +15206,7 @@ body.is-open-photoviewer {
15002
15206
  -moz-column-gap: 0.75rem;
15003
15207
  column-gap: 0.75rem;
15004
15208
  }
15005
- .u-column-gap-3\.5 {
15209
+ .u-column-gap-px-14 {
15006
15210
  -moz-column-gap: 0.875rem;
15007
15211
  column-gap: 0.875rem;
15008
15212
  }
@@ -15014,7 +15218,7 @@ body.is-open-photoviewer {
15014
15218
  -moz-column-gap: 1.25rem;
15015
15219
  column-gap: 1.25rem;
15016
15220
  }
15017
- .u-column-gap-5\.5 {
15221
+ .u-column-gap-px-22 {
15018
15222
  -moz-column-gap: 1.375rem;
15019
15223
  column-gap: 1.375rem;
15020
15224
  }
@@ -15026,7 +15230,7 @@ body.is-open-photoviewer {
15026
15230
  -moz-column-gap: 1.75rem;
15027
15231
  column-gap: 1.75rem;
15028
15232
  }
15029
- .u-column-gap-7\.5 {
15233
+ .u-column-gap-px-30 {
15030
15234
  -moz-column-gap: 1.875rem;
15031
15235
  column-gap: 1.875rem;
15032
15236
  }