@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
@@ -735,7 +735,6 @@ summary {
735
735
  --atomix-link-decoration: none;
736
736
  --atomix-link-hover-color: rgb(9.9104477612, 114.5895522388, 79.9029850746);
737
737
  --atomix-link-hover-color-rgb: 9.9104477612, 114.5895522388, 79.9029850746;
738
- --atomix-code-color: #ef4444;
739
738
  --atomix-highlight-bg: #fde68a;
740
739
  --atomix-border-width: 1px;
741
740
  --atomix-border-style: solid;
@@ -746,9 +745,7 @@ summary {
746
745
  --atomix-border-radius-lg: 0.625rem;
747
746
  --atomix-border-radius-xl: 0.75rem;
748
747
  --atomix-border-radius-xxl: 1rem;
749
- --atomix-border-radius-2xl: var(
750
- --atomix-border-radius-xxl
751
- );
748
+ --atomix-border-radius-2xl: var(--atomix-border-radius-xxl);
752
749
  --atomix-border-radius-3xl: 1.5rem;
753
750
  --atomix-border-radius-4xl: 2rem;
754
751
  --atomix-border-radius-pill: 50rem;
@@ -763,6 +760,136 @@ summary {
763
760
  --atomix-form-valid-border-color: #22c55e;
764
761
  --atomix-form-invalid-color: #ef4444;
765
762
  --atomix-form-invalid-border-color: #ef4444;
763
+ --atomix-spacing-0: 0rem;
764
+ --atomix-spacing-1: 0.25rem;
765
+ --atomix-spacing-px-6: 0.375rem;
766
+ --atomix-spacing-2: 0.5rem;
767
+ --atomix-spacing-px-10: 0.625rem;
768
+ --atomix-spacing-3: 0.75rem;
769
+ --atomix-spacing-px-14: 0.875rem;
770
+ --atomix-spacing-4: 1rem;
771
+ --atomix-spacing-5: 1.25rem;
772
+ --atomix-spacing-px-22: 1.375rem;
773
+ --atomix-spacing-6: 1.5rem;
774
+ --atomix-spacing-7: 1.75rem;
775
+ --atomix-spacing-px-30: 1.875rem;
776
+ --atomix-spacing-8: 2rem;
777
+ --atomix-spacing-9: 2.25rem;
778
+ --atomix-spacing-10: 2.5rem;
779
+ --atomix-spacing-11: 2.75rem;
780
+ --atomix-spacing-12: 3rem;
781
+ --atomix-spacing-14: 3.5rem;
782
+ --atomix-spacing-16: 4rem;
783
+ --atomix-spacing-20: 5rem;
784
+ --atomix-spacing-24: 6rem;
785
+ --atomix-spacing-28: 7rem;
786
+ --atomix-spacing-32: 8rem;
787
+ --atomix-spacing-36: 9rem;
788
+ --atomix-spacing-40: 10rem;
789
+ --atomix-spacing-44: 11rem;
790
+ --atomix-spacing-48: 12rem;
791
+ --atomix-spacing-52: 13rem;
792
+ --atomix-spacing-56: 14rem;
793
+ --atomix-spacing-60: 15rem;
794
+ --atomix-spacing-64: 16rem;
795
+ --atomix-spacing-72: 18rem;
796
+ --atomix-spacing-80: 20rem;
797
+ --atomix-spacing-90: 22.5rem;
798
+ --atomix-spacing-200: 50rem;
799
+ --atomix-red-1: #fef2f2;
800
+ --atomix-red-2: #fee2e2;
801
+ --atomix-red-3: #fecaca;
802
+ --atomix-red-4: #fca5a5;
803
+ --atomix-red-5: #f87171;
804
+ --atomix-red-6: #ef4444;
805
+ --atomix-red-7: #dc2626;
806
+ --atomix-red-8: #b91c1c;
807
+ --atomix-red-9: #991b1b;
808
+ --atomix-red-10: #7f1d1d;
809
+ --atomix-green-1: #f0fdf4;
810
+ --atomix-green-2: #dcfce7;
811
+ --atomix-green-3: #bbf7d0;
812
+ --atomix-green-4: #86efac;
813
+ --atomix-green-5: #4ade80;
814
+ --atomix-green-6: #22c55e;
815
+ --atomix-green-7: #16a34a;
816
+ --atomix-green-8: #15803d;
817
+ --atomix-green-9: #166534;
818
+ --atomix-green-10: #14532d;
819
+ --atomix-blue-1: #eff6ff;
820
+ --atomix-blue-2: #dbeafe;
821
+ --atomix-blue-3: #bfdbfe;
822
+ --atomix-blue-4: #93c5fd;
823
+ --atomix-blue-5: #60a5fa;
824
+ --atomix-blue-6: #3b82f6;
825
+ --atomix-blue-7: #2563eb;
826
+ --atomix-blue-8: #1d4ed8;
827
+ --atomix-blue-9: #1e40af;
828
+ --atomix-blue-10: #1e3a8a;
829
+ --atomix-yellow-1: #fffbeb;
830
+ --atomix-yellow-2: #fef3c7;
831
+ --atomix-yellow-3: #fde68a;
832
+ --atomix-yellow-4: #fcd34d;
833
+ --atomix-yellow-5: #fbbf24;
834
+ --atomix-yellow-6: #f59e0b;
835
+ --atomix-yellow-7: #d97706;
836
+ --atomix-yellow-8: #b45309;
837
+ --atomix-yellow-9: #92400e;
838
+ --atomix-yellow-10: #78350f;
839
+ --atomix-font-weight-light: 300;
840
+ --atomix-font-weight-normal: 400;
841
+ --atomix-font-weight-medium: 500;
842
+ --atomix-font-weight-semibold: 600;
843
+ --atomix-font-weight-bold: 700;
844
+ --atomix-font-weight-heavy: 800;
845
+ --atomix-font-weight-black: 900;
846
+ --atomix-line-height-base: 1.2;
847
+ --atomix-line-height-sm: 1.43;
848
+ --atomix-line-height-lg: 1.56;
849
+ --atomix-font-size-xl: 1.5rem;
850
+ --atomix-font-size-2xl: 2rem;
851
+ --atomix-display-1: 4rem;
852
+ --atomix-letter-spacing-h1: -1px;
853
+ --atomix-letter-spacing-h2: -1px;
854
+ --atomix-letter-spacing-h3: -1px;
855
+ --atomix-letter-spacing-h4: -0.5px;
856
+ --atomix-letter-spacing-h5: -0.5px;
857
+ --atomix-letter-spacing-h6: -0.5px;
858
+ --atomix-transition-duration-fast: 0.15s;
859
+ --atomix-transition-duration-base: 0.3s;
860
+ --atomix-transition-duration-slow: 0.5s;
861
+ --atomix-transition-duration-slower: 0.7s;
862
+ --atomix-easing-base: cubic-bezier(0.23, 1, 0.32, 1);
863
+ --atomix-easing-ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
864
+ --atomix-easing-ease-out: cubic-bezier(0, 0, 0.2, 1);
865
+ --atomix-easing-ease-in: cubic-bezier(0.4, 0, 1, 1);
866
+ --atomix-easing-ease-linear: linear;
867
+ --atomix-transition-fast: all 0.15s cubic-bezier(0.23, 1, 0.32, 1);
868
+ --atomix-transition-base: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
869
+ --atomix-transition-slow: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
870
+ --atomix-z-n1: -1;
871
+ --atomix-z-0: 0;
872
+ --atomix-z-1: 1;
873
+ --atomix-z-2: 2;
874
+ --atomix-z-3: 3;
875
+ --atomix-z-4: 4;
876
+ --atomix-z-5: 5;
877
+ --atomix-z-dropdown: 1000;
878
+ --atomix-z-sticky: 1020;
879
+ --atomix-z-fixed: 1030;
880
+ --atomix-z-modal: 1040;
881
+ --atomix-z-popover: 1050;
882
+ --atomix-z-tooltip: 1060;
883
+ --atomix-z-drawer: 1070;
884
+ --atomix-breakpoint-xs: 0;
885
+ --atomix-breakpoint-sm: 576px;
886
+ --atomix-breakpoint-md: 768px;
887
+ --atomix-breakpoint-lg: 992px;
888
+ --atomix-breakpoint-xl: 1200px;
889
+ --atomix-breakpoint-xxl: 1440px;
890
+ --atomix-focus-ring-width: 3px;
891
+ --atomix-focus-ring-offset: 2px;
892
+ --atomix-focus-ring-opacity: 0.25;
766
893
  }
767
894
  [data-atomix-color-mode=dark] {
768
895
  color-scheme: dark;
@@ -776,6 +903,14 @@ summary {
776
903
  --atomix-success: #22c55e;
777
904
  --atomix-warning: #f59e0b;
778
905
  --atomix-info: #3b82f6;
906
+ --atomix-primary-rgb: 16, 185, 129;
907
+ --atomix-secondary-rgb: 75, 85, 99;
908
+ --atomix-light-rgb: 249, 250, 251;
909
+ --atomix-dark-rgb: 55, 65, 81;
910
+ --atomix-error-rgb: 239, 68, 68;
911
+ --atomix-success-rgb: 34, 197, 94;
912
+ --atomix-warning-rgb: 245, 158, 11;
913
+ --atomix-info-rgb: 59, 130, 246;
779
914
  --atomix-primary-text-emphasis: #ffffff;
780
915
  --atomix-secondary-text-emphasis: #e5e7eb;
781
916
  --atomix-tertiary-text-emphasis: #d1d5db;
@@ -834,6 +969,7 @@ summary {
834
969
  --atomix-link-color: #6ee7b7;
835
970
  --atomix-link-color-rgb: 110, 231, 183;
836
971
  --atomix-link-hover-color: rgb(44.3639053254, 220.1360946746, 150.4082840237);
972
+ --atomix-link-hover-color-rgb: 44.3639053254, 220.1360946746, 150.4082840237;
837
973
  --atomix-code-color: #f87171;
838
974
  --atomix-border-color: #374151;
839
975
  --atomix-border-color-translucent: rgba(255, 255, 255, 0.15);
@@ -3575,7 +3711,7 @@ a, a:hover {
3575
3711
  position: relative;
3576
3712
  --atomix-glass-radius: var(--atomix-radius-md, 16px);
3577
3713
  --atomix-glass-transform: none;
3578
- --atomix-glass-transition: all var(--atomix-transition-duration, 0s) ease-out;
3714
+ --atomix-glass-transition: all var(--atomix-transition-duration, 0.15s) ease-out;
3579
3715
  --atomix-glass-position: absolute;
3580
3716
  --atomix-glass-container-width: 100%;
3581
3717
  --atomix-glass-container-height: 100%;
@@ -3682,10 +3818,14 @@ a, a:hover {
3682
3818
  height: 100%;
3683
3819
  pointer-events: none;
3684
3820
  }
3821
+ .c-atomix-glass__filter svg {
3822
+ border-radius: var(--atomix-glass-radius);
3823
+ }
3685
3824
  .c-atomix-glass__filter-overlay {
3686
3825
  position: absolute;
3687
3826
  inset: 0;
3688
3827
  pointer-events: none;
3828
+ border-radius: var(--atomix-glass-radius);
3689
3829
  }
3690
3830
  .c-atomix-glass__filter-shadow {
3691
3831
  position: absolute;
@@ -3696,6 +3836,7 @@ a, a:hover {
3696
3836
  position: relative;
3697
3837
  width: var(--atomix-glass-container-width);
3698
3838
  height: var(--atomix-glass-container-height);
3839
+ border-radius: var(--atomix-glass-radius);
3699
3840
  }
3700
3841
  .c-atomix-glass__background-layer {
3701
3842
  position: absolute;
@@ -3703,7 +3844,6 @@ a, a:hover {
3703
3844
  border-radius: var(--atomix-glass-radius);
3704
3845
  transform: var(--atomix-glass-transform);
3705
3846
  transition: var(--atomix-glass-transition);
3706
- will-change: transform;
3707
3847
  }
3708
3848
  .c-atomix-glass__background-layer--dark {
3709
3849
  background-color: var(--atomix-gray-9, #1f2937);
@@ -3759,7 +3899,7 @@ a, a:hover {
3759
3899
  --atomix-tag-border-radius: 50rem;
3760
3900
  --atomix-tag-bg-color: var(--atomix-body-bg);
3761
3901
  --atomix-tag-icon-size: 1rem;
3762
- --atomix-tag-inner-items-gap: 0.375rem;
3902
+ --atomix-tag-inner-items-gap: ;
3763
3903
  display: inline-flex;
3764
3904
  align-items: center;
3765
3905
  gap: var(--atomix-tag-inner-items-gap);
@@ -3787,7 +3927,7 @@ a, a:hover {
3787
3927
  }
3788
3928
  .c-badge--glass {
3789
3929
  background-color: color-mix(in srgb, var(--atomix-tag-bg-color) 20%, transparent);
3790
- border: 1px solid color-mix(in srgb, var(--atomix-tag-color) 90%, transparent);
3930
+ border: 1px solid color-mix(in srgb, var(--atomix-tag-color) 50%, transparent);
3791
3931
  }
3792
3932
  .c-badge--primary {
3793
3933
  --atomix-tag-bg-color: var(--atomix-brand-bg-subtle);
@@ -4754,7 +4894,7 @@ a, a:hover {
4754
4894
  --atomix-card-bg: var(--atomix-primary-bg-subtle);
4755
4895
  --atomix-card-bg-hover: var(--atomix-secondary-bg-subtle);
4756
4896
  --atomix-card-icon-size: 1.25rem;
4757
- --atomix-card-icon-padding: 0.375rem;
4897
+ --atomix-card-icon-padding: ;
4758
4898
  --atomix-card-icon-bg: var(--atomix-brand-bg-subtle);
4759
4899
  --atomix-card-icon-color: var(--atomix-brand-text-emphasis);
4760
4900
  --atomix-card-width: 100%;
@@ -4820,6 +4960,35 @@ a, a:hover {
4820
4960
  padding: var(--atomix-card-icon-padding);
4821
4961
  border-radius: 50rem;
4822
4962
  }
4963
+ .c-card__footer {
4964
+ margin-top: var(--atomix-card-spacer-y);
4965
+ padding-top: var(--atomix-card-spacer-y);
4966
+ border-top: 1px solid var(--atomix-card-border-color);
4967
+ }
4968
+ .c-card__footer--align-start {
4969
+ display: flex;
4970
+ justify-content: flex-start;
4971
+ align-items: center;
4972
+ }
4973
+ .c-card__footer--align-center {
4974
+ display: flex;
4975
+ justify-content: center;
4976
+ align-items: center;
4977
+ }
4978
+ .c-card__footer--align-end {
4979
+ display: flex;
4980
+ justify-content: flex-end;
4981
+ align-items: center;
4982
+ }
4983
+ .c-card__footer--align-between {
4984
+ display: flex;
4985
+ justify-content: space-between;
4986
+ align-items: center;
4987
+ }
4988
+ .c-card__body--scrollable {
4989
+ overflow-y: auto;
4990
+ overflow-x: hidden;
4991
+ }
4823
4992
  .c-card:focus, .c-card.is-active {
4824
4993
  --atomix-card-border-color: var(--atomix-brand-border-subtle);
4825
4994
  }
@@ -4948,6 +5117,31 @@ a, a:hover {
4948
5117
  .c-card--interactive:active:not(.c-card--interactive--disabled) {
4949
5118
  transform: translateY(0);
4950
5119
  }
5120
+ .c-card--hoverable {
5121
+ cursor: pointer;
5122
+ transition: all 0.2s ease-in-out;
5123
+ }
5124
+ .c-card--hoverable:hover:not(.c-card--hoverable--disabled) {
5125
+ transform: translateY(-2px);
5126
+ }
5127
+ .c-card--hoverable:active:not(.c-card--hoverable--disabled) {
5128
+ transform: translateY(0);
5129
+ }
5130
+ .c-card--hoverable--hover-elevation-none:hover:not(.c-card--hoverable--disabled) {
5131
+ box-shadow: none;
5132
+ }
5133
+ .c-card--hoverable--hover-elevation-sm:hover:not(.c-card--hoverable--disabled) {
5134
+ box-shadow: var(--atomix-box-shadow-sm);
5135
+ }
5136
+ .c-card--hoverable--hover-elevation-md:hover:not(.c-card--hoverable--disabled) {
5137
+ box-shadow: var(--atomix-box-shadow-md);
5138
+ }
5139
+ .c-card--hoverable--hover-elevation-lg:hover:not(.c-card--hoverable--disabled) {
5140
+ box-shadow: var(--atomix-box-shadow-lg);
5141
+ }
5142
+ .c-card--hoverable--hover-elevation-xl:hover:not(.c-card--hoverable--disabled) {
5143
+ box-shadow: var(--atomix-box-shadow-xl);
5144
+ }
4951
5145
  .c-card--primary {
4952
5146
  --atomix-card-bg: var(--atomix-brand-bg-subtle);
4953
5147
  --atomix-card-bg-hover: var(--atomix-brand-bg-subtle);
@@ -5046,7 +5240,7 @@ a, a:hover {
5046
5240
  .c-card {
5047
5241
  transition: none;
5048
5242
  }
5049
- .c-card--interactive:hover:not(.c-card--disabled) {
5243
+ .c-card--interactive:hover:not(.c-card--disabled), .c-card--hoverable:hover:not(.c-card--disabled) {
5050
5244
  transform: none;
5051
5245
  }
5052
5246
  .c-card__spinner {
@@ -5287,7 +5481,6 @@ a, a:hover {
5287
5481
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
5288
5482
  position: relative;
5289
5483
  overflow: hidden;
5290
- font-size: 0.875rem;
5291
5484
  }
5292
5485
  .c-chart__action::before {
5293
5486
  content: "";
@@ -5447,7 +5640,7 @@ a, a:hover {
5447
5640
  display: flex;
5448
5641
  align-items: center;
5449
5642
  justify-content: space-between;
5450
- padding: 0.375rem 0;
5643
+ padding: 0;
5451
5644
  gap: 0.75rem;
5452
5645
  }
5453
5646
  .c-chart__settings-menu-item--info {
@@ -7017,6 +7210,9 @@ a, a:hover {
7017
7210
  --atomix-dropdown-link-hover-color: var(--atomix-dark-text-emphasis);
7018
7211
  --atomix-dropdown-link-hover-bg: var(--atomix-dark-bg-subtle);
7019
7212
  }
7213
+ .c-dropdown--glass .c-dropdown__menu-inner {
7214
+ box-shadow: none;
7215
+ }
7020
7216
  .c-dropdown.is-open .c-dropdown__toggle-icon {
7021
7217
  transform: rotate(-180deg);
7022
7218
  }
@@ -8596,7 +8792,7 @@ a, a:hover {
8596
8792
  --atomix-input-font-size: 0.875rem;
8597
8793
  --atomix-input-line-height: 20px;
8598
8794
  --atomix-input-padding-x: 0.75rem;
8599
- --atomix-input-padding-y: 0.625rem;
8795
+ --atomix-input-padding-y: ;
8600
8796
  --atomix-input-border-color: var(--atomix-primary-border-subtle);
8601
8797
  --atomix-input-border-width: var(--atomix-border-width);
8602
8798
  --atomix-input-border-radius: 0.75rem;
@@ -8642,7 +8838,7 @@ a, a:hover {
8642
8838
  --atomix-input-font-size: 0.875rem;
8643
8839
  --atomix-input-line-height: 20px;
8644
8840
  --atomix-input-padding-x: 0.75rem;
8645
- --atomix-input-padding-y: 0.375rem;
8841
+ --atomix-input-padding-y: ;
8646
8842
  }
8647
8843
  .c-input--sm.c-input--textarea {
8648
8844
  --atomix-input-textarea-height: 80px;
@@ -9402,7 +9598,7 @@ a, a:hover {
9402
9598
  --atomix-modal-sub-margin-top: 0.25rem;
9403
9599
  --atomix-modal-sub-color: var(--atomix-tertiary-text-emphasis);
9404
9600
  --atomix-modal-sub-font-size: 0.875rem;
9405
- --atomix-modal-footer-items-gap: 2rem;
9601
+ --atomix-modal-footer-items-gap: 0.5rem;
9406
9602
  --atomix-modal-backdrop-bg: var(--atomix-invert-bg-subtle);
9407
9603
  --atomix-modal-backdrop-opacity: 0.5;
9408
9604
  --atomix-modal-backdrop-blur: 10px;
@@ -9504,8 +9700,12 @@ a, a:hover {
9504
9700
  .c-modal--xl {
9505
9701
  --atomix-modal-width: var(--atomix-modal-xl);
9506
9702
  }
9507
- .c-modal--glass .c-modal .c-modal--glass .c-modal__content {
9703
+ .c-modal--glass .c-modal__content {
9508
9704
  background-color: color-mix(in srgb, var(--atomix-modal-content-bg) 50%, transparent);
9705
+ box-shadow: none;
9706
+ border-radius: inherit;
9707
+ width: var(--atomix-modal-width);
9708
+ height: 100%;
9509
9709
  }
9510
9710
  .c-modal.is-open .c-modal__backdrop {
9511
9711
  opacity: var(--atomix-modal-backdrop-opacity);
@@ -9656,7 +9856,7 @@ a, a:hover {
9656
9856
  --atomix-navbar-border-width: var(--atomix-border-width);
9657
9857
  --atomix-navbar-border-color: var(--atomix-primary-border-subtle);
9658
9858
  --atomix-navbar-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
9659
- --atomix-navbar-brand-margin-end: 1.875rem;
9859
+ --atomix-navbar-brand-margin-end: ;
9660
9860
  --atomix-navbar-brand-font-size: 1.25rem;
9661
9861
  --atomix-navbar-brand-font-weight: 700;
9662
9862
  --atomix-navbar-brand-color: var(--atomix-body-color);
@@ -10026,7 +10226,7 @@ a, a:hover {
10026
10226
  --atomix-callout-title-font-size: 1rem;
10027
10227
  --atomix-callout-title-font-weight: 600;
10028
10228
  --atomix-callout-title-color: var(--atomix-body-color);
10029
- --atomix-callout-text-font-size: 0.875rem;
10229
+ --atomix-callout-text-font-size: ;
10030
10230
  --atomix-callout-text-font-weight: 400;
10031
10231
  --atomix-callout-text-color: var(--atomix-body-color);
10032
10232
  --atomix-callout-message-spacer: 0.75rem;
@@ -10481,6 +10681,10 @@ a, a:hover {
10481
10681
  left: calc(var(--atomix-popover-arrow-offset) * -1);
10482
10682
  transform: translateY(-50%) rotate(45deg);
10483
10683
  }
10684
+ .c-popover--glass .c-popover__content-inner {
10685
+ background-color: color-mix(in srgb, var(--atomix-popover-bg) 50%, transparent);
10686
+ box-shadow: none;
10687
+ }
10484
10688
  .c-product-review {
10485
10689
  --atomix-product-review-padding: 1.5rem;
10486
10690
  --atomix-product-review-border-radius: var(--atomix-border-radius);
@@ -12358,7 +12562,7 @@ a, a:hover {
12358
12562
  --atomix-upload-loader-text-margin-top: 0.3125rem;
12359
12563
  --atomix-upload-loader-color: var(--atomix-primary);
12360
12564
  --atomix-upload-loader-bar-height: 0.625rem;
12361
- --atomix-upload-loader-bar-margin-top: 0.625rem;
12565
+ --atomix-upload-loader-bar-margin-top: ;
12362
12566
  --atomix-upload-loader-bg-opacity: 1;
12363
12567
  --atomix-upload-loader-progress: 39%;
12364
12568
  --atomix-upload-content-margin-left: 1rem;
@@ -12537,7 +12741,7 @@ a, a:hover {
12537
12741
  .c-upload--large {
12538
12742
  --atomix-upload-width: 43.75rem;
12539
12743
  --atomix-upload-inner-padding-x: 1.25rem;
12540
- --atomix-upload-inner-padding-y: 1.375rem;
12744
+ --atomix-upload-inner-padding-y: ;
12541
12745
  --atomix-upload-title-margin-top: 0;
12542
12746
  --atomix-upload-btn-margin-top: 0;
12543
12747
  --atomix-upload-helper-text-margin-top: 0;
@@ -14934,19 +15138,19 @@ body.is-open-photoviewer {
14934
15138
  .u-m-1 {
14935
15139
  margin: 0.25rem;
14936
15140
  }
14937
- .u-m-1\.5 {
15141
+ .u-m-px-6 {
14938
15142
  margin: 0.375rem;
14939
15143
  }
14940
15144
  .u-m-2 {
14941
15145
  margin: 0.5rem;
14942
15146
  }
14943
- .u-m-2\.5 {
15147
+ .u-m-px-10 {
14944
15148
  margin: 0.625rem;
14945
15149
  }
14946
15150
  .u-m-3 {
14947
15151
  margin: 0.75rem;
14948
15152
  }
14949
- .u-m-3\.5 {
15153
+ .u-m-px-14 {
14950
15154
  margin: 0.875rem;
14951
15155
  }
14952
15156
  .u-m-4 {
@@ -14955,7 +15159,7 @@ body.is-open-photoviewer {
14955
15159
  .u-m-5 {
14956
15160
  margin: 1.25rem;
14957
15161
  }
14958
- .u-m-5\.5 {
15162
+ .u-m-px-22 {
14959
15163
  margin: 1.375rem;
14960
15164
  }
14961
15165
  .u-m-6 {
@@ -14964,7 +15168,7 @@ body.is-open-photoviewer {
14964
15168
  .u-m-7 {
14965
15169
  margin: 1.75rem;
14966
15170
  }
14967
- .u-m-7\.5 {
15171
+ .u-m-px-30 {
14968
15172
  margin: 1.875rem;
14969
15173
  }
14970
15174
  .u-m-8 {
@@ -15047,7 +15251,7 @@ body.is-open-photoviewer {
15047
15251
  margin-right: 0.25rem;
15048
15252
  margin-left: 0.25rem;
15049
15253
  }
15050
- .u-mx-1\.5 {
15254
+ .u-mx-px-6 {
15051
15255
  margin-right: 0.375rem;
15052
15256
  margin-left: 0.375rem;
15053
15257
  }
@@ -15055,7 +15259,7 @@ body.is-open-photoviewer {
15055
15259
  margin-right: 0.5rem;
15056
15260
  margin-left: 0.5rem;
15057
15261
  }
15058
- .u-mx-2\.5 {
15262
+ .u-mx-px-10 {
15059
15263
  margin-right: 0.625rem;
15060
15264
  margin-left: 0.625rem;
15061
15265
  }
@@ -15063,7 +15267,7 @@ body.is-open-photoviewer {
15063
15267
  margin-right: 0.75rem;
15064
15268
  margin-left: 0.75rem;
15065
15269
  }
15066
- .u-mx-3\.5 {
15270
+ .u-mx-px-14 {
15067
15271
  margin-right: 0.875rem;
15068
15272
  margin-left: 0.875rem;
15069
15273
  }
@@ -15075,7 +15279,7 @@ body.is-open-photoviewer {
15075
15279
  margin-right: 1.25rem;
15076
15280
  margin-left: 1.25rem;
15077
15281
  }
15078
- .u-mx-5\.5 {
15282
+ .u-mx-px-22 {
15079
15283
  margin-right: 1.375rem;
15080
15284
  margin-left: 1.375rem;
15081
15285
  }
@@ -15087,7 +15291,7 @@ body.is-open-photoviewer {
15087
15291
  margin-right: 1.75rem;
15088
15292
  margin-left: 1.75rem;
15089
15293
  }
15090
- .u-mx-7\.5 {
15294
+ .u-mx-px-30 {
15091
15295
  margin-right: 1.875rem;
15092
15296
  margin-left: 1.875rem;
15093
15297
  }
@@ -15195,7 +15399,7 @@ body.is-open-photoviewer {
15195
15399
  margin-top: 0.25rem;
15196
15400
  margin-bottom: 0.25rem;
15197
15401
  }
15198
- .u-my-1\.5 {
15402
+ .u-my-px-6 {
15199
15403
  margin-top: 0.375rem;
15200
15404
  margin-bottom: 0.375rem;
15201
15405
  }
@@ -15203,7 +15407,7 @@ body.is-open-photoviewer {
15203
15407
  margin-top: 0.5rem;
15204
15408
  margin-bottom: 0.5rem;
15205
15409
  }
15206
- .u-my-2\.5 {
15410
+ .u-my-px-10 {
15207
15411
  margin-top: 0.625rem;
15208
15412
  margin-bottom: 0.625rem;
15209
15413
  }
@@ -15211,7 +15415,7 @@ body.is-open-photoviewer {
15211
15415
  margin-top: 0.75rem;
15212
15416
  margin-bottom: 0.75rem;
15213
15417
  }
15214
- .u-my-3\.5 {
15418
+ .u-my-px-14 {
15215
15419
  margin-top: 0.875rem;
15216
15420
  margin-bottom: 0.875rem;
15217
15421
  }
@@ -15223,7 +15427,7 @@ body.is-open-photoviewer {
15223
15427
  margin-top: 1.25rem;
15224
15428
  margin-bottom: 1.25rem;
15225
15429
  }
15226
- .u-my-5\.5 {
15430
+ .u-my-px-22 {
15227
15431
  margin-top: 1.375rem;
15228
15432
  margin-bottom: 1.375rem;
15229
15433
  }
@@ -15235,7 +15439,7 @@ body.is-open-photoviewer {
15235
15439
  margin-top: 1.75rem;
15236
15440
  margin-bottom: 1.75rem;
15237
15441
  }
15238
- .u-my-7\.5 {
15442
+ .u-my-px-30 {
15239
15443
  margin-top: 1.875rem;
15240
15444
  margin-bottom: 1.875rem;
15241
15445
  }
@@ -15341,19 +15545,19 @@ body.is-open-photoviewer {
15341
15545
  .u-mt-1 {
15342
15546
  margin-top: 0.25rem;
15343
15547
  }
15344
- .u-mt-1\.5 {
15548
+ .u-mt-px-6 {
15345
15549
  margin-top: 0.375rem;
15346
15550
  }
15347
15551
  .u-mt-2 {
15348
15552
  margin-top: 0.5rem;
15349
15553
  }
15350
- .u-mt-2\.5 {
15554
+ .u-mt-px-10 {
15351
15555
  margin-top: 0.625rem;
15352
15556
  }
15353
15557
  .u-mt-3 {
15354
15558
  margin-top: 0.75rem;
15355
15559
  }
15356
- .u-mt-3\.5 {
15560
+ .u-mt-px-14 {
15357
15561
  margin-top: 0.875rem;
15358
15562
  }
15359
15563
  .u-mt-4 {
@@ -15362,7 +15566,7 @@ body.is-open-photoviewer {
15362
15566
  .u-mt-5 {
15363
15567
  margin-top: 1.25rem;
15364
15568
  }
15365
- .u-mt-5\.5 {
15569
+ .u-mt-px-22 {
15366
15570
  margin-top: 1.375rem;
15367
15571
  }
15368
15572
  .u-mt-6 {
@@ -15371,7 +15575,7 @@ body.is-open-photoviewer {
15371
15575
  .u-mt-7 {
15372
15576
  margin-top: 1.75rem;
15373
15577
  }
15374
- .u-mt-7\.5 {
15578
+ .u-mt-px-30 {
15375
15579
  margin-top: 1.875rem;
15376
15580
  }
15377
15581
  .u-mt-8 {
@@ -15452,19 +15656,19 @@ body.is-open-photoviewer {
15452
15656
  .u-me-1 {
15453
15657
  margin-right: 0.25rem;
15454
15658
  }
15455
- .u-me-1\.5 {
15659
+ .u-me-px-6 {
15456
15660
  margin-right: 0.375rem;
15457
15661
  }
15458
15662
  .u-me-2 {
15459
15663
  margin-right: 0.5rem;
15460
15664
  }
15461
- .u-me-2\.5 {
15665
+ .u-me-px-10 {
15462
15666
  margin-right: 0.625rem;
15463
15667
  }
15464
15668
  .u-me-3 {
15465
15669
  margin-right: 0.75rem;
15466
15670
  }
15467
- .u-me-3\.5 {
15671
+ .u-me-px-14 {
15468
15672
  margin-right: 0.875rem;
15469
15673
  }
15470
15674
  .u-me-4 {
@@ -15473,7 +15677,7 @@ body.is-open-photoviewer {
15473
15677
  .u-me-5 {
15474
15678
  margin-right: 1.25rem;
15475
15679
  }
15476
- .u-me-5\.5 {
15680
+ .u-me-px-22 {
15477
15681
  margin-right: 1.375rem;
15478
15682
  }
15479
15683
  .u-me-6 {
@@ -15482,7 +15686,7 @@ body.is-open-photoviewer {
15482
15686
  .u-me-7 {
15483
15687
  margin-right: 1.75rem;
15484
15688
  }
15485
- .u-me-7\.5 {
15689
+ .u-me-px-30 {
15486
15690
  margin-right: 1.875rem;
15487
15691
  }
15488
15692
  .u-me-8 {
@@ -15563,19 +15767,19 @@ body.is-open-photoviewer {
15563
15767
  .u-mb-1 {
15564
15768
  margin-bottom: 0.25rem;
15565
15769
  }
15566
- .u-mb-1\.5 {
15770
+ .u-mb-px-6 {
15567
15771
  margin-bottom: 0.375rem;
15568
15772
  }
15569
15773
  .u-mb-2 {
15570
15774
  margin-bottom: 0.5rem;
15571
15775
  }
15572
- .u-mb-2\.5 {
15776
+ .u-mb-px-10 {
15573
15777
  margin-bottom: 0.625rem;
15574
15778
  }
15575
15779
  .u-mb-3 {
15576
15780
  margin-bottom: 0.75rem;
15577
15781
  }
15578
- .u-mb-3\.5 {
15782
+ .u-mb-px-14 {
15579
15783
  margin-bottom: 0.875rem;
15580
15784
  }
15581
15785
  .u-mb-4 {
@@ -15584,7 +15788,7 @@ body.is-open-photoviewer {
15584
15788
  .u-mb-5 {
15585
15789
  margin-bottom: 1.25rem;
15586
15790
  }
15587
- .u-mb-5\.5 {
15791
+ .u-mb-px-22 {
15588
15792
  margin-bottom: 1.375rem;
15589
15793
  }
15590
15794
  .u-mb-6 {
@@ -15593,7 +15797,7 @@ body.is-open-photoviewer {
15593
15797
  .u-mb-7 {
15594
15798
  margin-bottom: 1.75rem;
15595
15799
  }
15596
- .u-mb-7\.5 {
15800
+ .u-mb-px-30 {
15597
15801
  margin-bottom: 1.875rem;
15598
15802
  }
15599
15803
  .u-mb-8 {
@@ -15674,19 +15878,19 @@ body.is-open-photoviewer {
15674
15878
  .u-ms-1 {
15675
15879
  margin-left: 0.25rem;
15676
15880
  }
15677
- .u-ms-1\.5 {
15881
+ .u-ms-px-6 {
15678
15882
  margin-left: 0.375rem;
15679
15883
  }
15680
15884
  .u-ms-2 {
15681
15885
  margin-left: 0.5rem;
15682
15886
  }
15683
- .u-ms-2\.5 {
15887
+ .u-ms-px-10 {
15684
15888
  margin-left: 0.625rem;
15685
15889
  }
15686
15890
  .u-ms-3 {
15687
15891
  margin-left: 0.75rem;
15688
15892
  }
15689
- .u-ms-3\.5 {
15893
+ .u-ms-px-14 {
15690
15894
  margin-left: 0.875rem;
15691
15895
  }
15692
15896
  .u-ms-4 {
@@ -15695,7 +15899,7 @@ body.is-open-photoviewer {
15695
15899
  .u-ms-5 {
15696
15900
  margin-left: 1.25rem;
15697
15901
  }
15698
- .u-ms-5\.5 {
15902
+ .u-ms-px-22 {
15699
15903
  margin-left: 1.375rem;
15700
15904
  }
15701
15905
  .u-ms-6 {
@@ -15704,7 +15908,7 @@ body.is-open-photoviewer {
15704
15908
  .u-ms-7 {
15705
15909
  margin-left: 1.75rem;
15706
15910
  }
15707
- .u-ms-7\.5 {
15911
+ .u-ms-px-30 {
15708
15912
  margin-left: 1.875rem;
15709
15913
  }
15710
15914
  .u-ms-8 {
@@ -15785,19 +15989,19 @@ body.is-open-photoviewer {
15785
15989
  .u-p-1 {
15786
15990
  padding: 0.25rem;
15787
15991
  }
15788
- .u-p-1\.5 {
15992
+ .u-p-px-6 {
15789
15993
  padding: 0.375rem;
15790
15994
  }
15791
15995
  .u-p-2 {
15792
15996
  padding: 0.5rem;
15793
15997
  }
15794
- .u-p-2\.5 {
15998
+ .u-p-px-10 {
15795
15999
  padding: 0.625rem;
15796
16000
  }
15797
16001
  .u-p-3 {
15798
16002
  padding: 0.75rem;
15799
16003
  }
15800
- .u-p-3\.5 {
16004
+ .u-p-px-14 {
15801
16005
  padding: 0.875rem;
15802
16006
  }
15803
16007
  .u-p-4 {
@@ -15806,7 +16010,7 @@ body.is-open-photoviewer {
15806
16010
  .u-p-5 {
15807
16011
  padding: 1.25rem;
15808
16012
  }
15809
- .u-p-5\.5 {
16013
+ .u-p-px-22 {
15810
16014
  padding: 1.375rem;
15811
16015
  }
15812
16016
  .u-p-6 {
@@ -15815,7 +16019,7 @@ body.is-open-photoviewer {
15815
16019
  .u-p-7 {
15816
16020
  padding: 1.75rem;
15817
16021
  }
15818
- .u-p-7\.5 {
16022
+ .u-p-px-30 {
15819
16023
  padding: 1.875rem;
15820
16024
  }
15821
16025
  .u-p-8 {
@@ -15895,7 +16099,7 @@ body.is-open-photoviewer {
15895
16099
  padding-right: 0.25rem;
15896
16100
  padding-left: 0.25rem;
15897
16101
  }
15898
- .u-px-1\.5 {
16102
+ .u-px-px-6 {
15899
16103
  padding-right: 0.375rem;
15900
16104
  padding-left: 0.375rem;
15901
16105
  }
@@ -15903,7 +16107,7 @@ body.is-open-photoviewer {
15903
16107
  padding-right: 0.5rem;
15904
16108
  padding-left: 0.5rem;
15905
16109
  }
15906
- .u-px-2\.5 {
16110
+ .u-px-px-10 {
15907
16111
  padding-right: 0.625rem;
15908
16112
  padding-left: 0.625rem;
15909
16113
  }
@@ -15911,7 +16115,7 @@ body.is-open-photoviewer {
15911
16115
  padding-right: 0.75rem;
15912
16116
  padding-left: 0.75rem;
15913
16117
  }
15914
- .u-px-3\.5 {
16118
+ .u-px-px-14 {
15915
16119
  padding-right: 0.875rem;
15916
16120
  padding-left: 0.875rem;
15917
16121
  }
@@ -15923,7 +16127,7 @@ body.is-open-photoviewer {
15923
16127
  padding-right: 1.25rem;
15924
16128
  padding-left: 1.25rem;
15925
16129
  }
15926
- .u-px-5\.5 {
16130
+ .u-px-px-22 {
15927
16131
  padding-right: 1.375rem;
15928
16132
  padding-left: 1.375rem;
15929
16133
  }
@@ -15935,7 +16139,7 @@ body.is-open-photoviewer {
15935
16139
  padding-right: 1.75rem;
15936
16140
  padding-left: 1.75rem;
15937
16141
  }
15938
- .u-px-7\.5 {
16142
+ .u-px-px-30 {
15939
16143
  padding-right: 1.875rem;
15940
16144
  padding-left: 1.875rem;
15941
16145
  }
@@ -16039,7 +16243,7 @@ body.is-open-photoviewer {
16039
16243
  padding-top: 0.25rem;
16040
16244
  padding-bottom: 0.25rem;
16041
16245
  }
16042
- .u-py-1\.5 {
16246
+ .u-py-px-6 {
16043
16247
  padding-top: 0.375rem;
16044
16248
  padding-bottom: 0.375rem;
16045
16249
  }
@@ -16047,7 +16251,7 @@ body.is-open-photoviewer {
16047
16251
  padding-top: 0.5rem;
16048
16252
  padding-bottom: 0.5rem;
16049
16253
  }
16050
- .u-py-2\.5 {
16254
+ .u-py-px-10 {
16051
16255
  padding-top: 0.625rem;
16052
16256
  padding-bottom: 0.625rem;
16053
16257
  }
@@ -16055,7 +16259,7 @@ body.is-open-photoviewer {
16055
16259
  padding-top: 0.75rem;
16056
16260
  padding-bottom: 0.75rem;
16057
16261
  }
16058
- .u-py-3\.5 {
16262
+ .u-py-px-14 {
16059
16263
  padding-top: 0.875rem;
16060
16264
  padding-bottom: 0.875rem;
16061
16265
  }
@@ -16067,7 +16271,7 @@ body.is-open-photoviewer {
16067
16271
  padding-top: 1.25rem;
16068
16272
  padding-bottom: 1.25rem;
16069
16273
  }
16070
- .u-py-5\.5 {
16274
+ .u-py-px-22 {
16071
16275
  padding-top: 1.375rem;
16072
16276
  padding-bottom: 1.375rem;
16073
16277
  }
@@ -16079,7 +16283,7 @@ body.is-open-photoviewer {
16079
16283
  padding-top: 1.75rem;
16080
16284
  padding-bottom: 1.75rem;
16081
16285
  }
16082
- .u-py-7\.5 {
16286
+ .u-py-px-30 {
16083
16287
  padding-top: 1.875rem;
16084
16288
  padding-bottom: 1.875rem;
16085
16289
  }
@@ -16181,19 +16385,19 @@ body.is-open-photoviewer {
16181
16385
  .u-pt-1 {
16182
16386
  padding-top: 0.25rem;
16183
16387
  }
16184
- .u-pt-1\.5 {
16388
+ .u-pt-px-6 {
16185
16389
  padding-top: 0.375rem;
16186
16390
  }
16187
16391
  .u-pt-2 {
16188
16392
  padding-top: 0.5rem;
16189
16393
  }
16190
- .u-pt-2\.5 {
16394
+ .u-pt-px-10 {
16191
16395
  padding-top: 0.625rem;
16192
16396
  }
16193
16397
  .u-pt-3 {
16194
16398
  padding-top: 0.75rem;
16195
16399
  }
16196
- .u-pt-3\.5 {
16400
+ .u-pt-px-14 {
16197
16401
  padding-top: 0.875rem;
16198
16402
  }
16199
16403
  .u-pt-4 {
@@ -16202,7 +16406,7 @@ body.is-open-photoviewer {
16202
16406
  .u-pt-5 {
16203
16407
  padding-top: 1.25rem;
16204
16408
  }
16205
- .u-pt-5\.5 {
16409
+ .u-pt-px-22 {
16206
16410
  padding-top: 1.375rem;
16207
16411
  }
16208
16412
  .u-pt-6 {
@@ -16211,7 +16415,7 @@ body.is-open-photoviewer {
16211
16415
  .u-pt-7 {
16212
16416
  padding-top: 1.75rem;
16213
16417
  }
16214
- .u-pt-7\.5 {
16418
+ .u-pt-px-30 {
16215
16419
  padding-top: 1.875rem;
16216
16420
  }
16217
16421
  .u-pt-8 {
@@ -16289,19 +16493,19 @@ body.is-open-photoviewer {
16289
16493
  .u-pe-1 {
16290
16494
  padding-right: 0.25rem;
16291
16495
  }
16292
- .u-pe-1\.5 {
16496
+ .u-pe-px-6 {
16293
16497
  padding-right: 0.375rem;
16294
16498
  }
16295
16499
  .u-pe-2 {
16296
16500
  padding-right: 0.5rem;
16297
16501
  }
16298
- .u-pe-2\.5 {
16502
+ .u-pe-px-10 {
16299
16503
  padding-right: 0.625rem;
16300
16504
  }
16301
16505
  .u-pe-3 {
16302
16506
  padding-right: 0.75rem;
16303
16507
  }
16304
- .u-pe-3\.5 {
16508
+ .u-pe-px-14 {
16305
16509
  padding-right: 0.875rem;
16306
16510
  }
16307
16511
  .u-pe-4 {
@@ -16310,7 +16514,7 @@ body.is-open-photoviewer {
16310
16514
  .u-pe-5 {
16311
16515
  padding-right: 1.25rem;
16312
16516
  }
16313
- .u-pe-5\.5 {
16517
+ .u-pe-px-22 {
16314
16518
  padding-right: 1.375rem;
16315
16519
  }
16316
16520
  .u-pe-6 {
@@ -16319,7 +16523,7 @@ body.is-open-photoviewer {
16319
16523
  .u-pe-7 {
16320
16524
  padding-right: 1.75rem;
16321
16525
  }
16322
- .u-pe-7\.5 {
16526
+ .u-pe-px-30 {
16323
16527
  padding-right: 1.875rem;
16324
16528
  }
16325
16529
  .u-pe-8 {
@@ -16397,19 +16601,19 @@ body.is-open-photoviewer {
16397
16601
  .u-pb-1 {
16398
16602
  padding-bottom: 0.25rem;
16399
16603
  }
16400
- .u-pb-1\.5 {
16604
+ .u-pb-px-6 {
16401
16605
  padding-bottom: 0.375rem;
16402
16606
  }
16403
16607
  .u-pb-2 {
16404
16608
  padding-bottom: 0.5rem;
16405
16609
  }
16406
- .u-pb-2\.5 {
16610
+ .u-pb-px-10 {
16407
16611
  padding-bottom: 0.625rem;
16408
16612
  }
16409
16613
  .u-pb-3 {
16410
16614
  padding-bottom: 0.75rem;
16411
16615
  }
16412
- .u-pb-3\.5 {
16616
+ .u-pb-px-14 {
16413
16617
  padding-bottom: 0.875rem;
16414
16618
  }
16415
16619
  .u-pb-4 {
@@ -16418,7 +16622,7 @@ body.is-open-photoviewer {
16418
16622
  .u-pb-5 {
16419
16623
  padding-bottom: 1.25rem;
16420
16624
  }
16421
- .u-pb-5\.5 {
16625
+ .u-pb-px-22 {
16422
16626
  padding-bottom: 1.375rem;
16423
16627
  }
16424
16628
  .u-pb-6 {
@@ -16427,7 +16631,7 @@ body.is-open-photoviewer {
16427
16631
  .u-pb-7 {
16428
16632
  padding-bottom: 1.75rem;
16429
16633
  }
16430
- .u-pb-7\.5 {
16634
+ .u-pb-px-30 {
16431
16635
  padding-bottom: 1.875rem;
16432
16636
  }
16433
16637
  .u-pb-8 {
@@ -16505,19 +16709,19 @@ body.is-open-photoviewer {
16505
16709
  .u-ps-1 {
16506
16710
  padding-left: 0.25rem;
16507
16711
  }
16508
- .u-ps-1\.5 {
16712
+ .u-ps-px-6 {
16509
16713
  padding-left: 0.375rem;
16510
16714
  }
16511
16715
  .u-ps-2 {
16512
16716
  padding-left: 0.5rem;
16513
16717
  }
16514
- .u-ps-2\.5 {
16718
+ .u-ps-px-10 {
16515
16719
  padding-left: 0.625rem;
16516
16720
  }
16517
16721
  .u-ps-3 {
16518
16722
  padding-left: 0.75rem;
16519
16723
  }
16520
- .u-ps-3\.5 {
16724
+ .u-ps-px-14 {
16521
16725
  padding-left: 0.875rem;
16522
16726
  }
16523
16727
  .u-ps-4 {
@@ -16526,7 +16730,7 @@ body.is-open-photoviewer {
16526
16730
  .u-ps-5 {
16527
16731
  padding-left: 1.25rem;
16528
16732
  }
16529
- .u-ps-5\.5 {
16733
+ .u-ps-px-22 {
16530
16734
  padding-left: 1.375rem;
16531
16735
  }
16532
16736
  .u-ps-6 {
@@ -16535,7 +16739,7 @@ body.is-open-photoviewer {
16535
16739
  .u-ps-7 {
16536
16740
  padding-left: 1.75rem;
16537
16741
  }
16538
- .u-ps-7\.5 {
16742
+ .u-ps-px-30 {
16539
16743
  padding-left: 1.875rem;
16540
16744
  }
16541
16745
  .u-ps-8 {
@@ -16613,19 +16817,19 @@ body.is-open-photoviewer {
16613
16817
  .u-gap-1 {
16614
16818
  gap: 0.25rem;
16615
16819
  }
16616
- .u-gap-1\.5 {
16820
+ .u-gap-px-6 {
16617
16821
  gap: 0.375rem;
16618
16822
  }
16619
16823
  .u-gap-2 {
16620
16824
  gap: 0.5rem;
16621
16825
  }
16622
- .u-gap-2\.5 {
16826
+ .u-gap-px-10 {
16623
16827
  gap: 0.625rem;
16624
16828
  }
16625
16829
  .u-gap-3 {
16626
16830
  gap: 0.75rem;
16627
16831
  }
16628
- .u-gap-3\.5 {
16832
+ .u-gap-px-14 {
16629
16833
  gap: 0.875rem;
16630
16834
  }
16631
16835
  .u-gap-4 {
@@ -16634,7 +16838,7 @@ body.is-open-photoviewer {
16634
16838
  .u-gap-5 {
16635
16839
  gap: 1.25rem;
16636
16840
  }
16637
- .u-gap-5\.5 {
16841
+ .u-gap-px-22 {
16638
16842
  gap: 1.375rem;
16639
16843
  }
16640
16844
  .u-gap-6 {
@@ -16643,7 +16847,7 @@ body.is-open-photoviewer {
16643
16847
  .u-gap-7 {
16644
16848
  gap: 1.75rem;
16645
16849
  }
16646
- .u-gap-7\.5 {
16850
+ .u-gap-px-30 {
16647
16851
  gap: 1.875rem;
16648
16852
  }
16649
16853
  .u-gap-8 {
@@ -16721,19 +16925,19 @@ body.is-open-photoviewer {
16721
16925
  .u-row-gap-1 {
16722
16926
  row-gap: 0.25rem;
16723
16927
  }
16724
- .u-row-gap-1\.5 {
16928
+ .u-row-gap-px-6 {
16725
16929
  row-gap: 0.375rem;
16726
16930
  }
16727
16931
  .u-row-gap-2 {
16728
16932
  row-gap: 0.5rem;
16729
16933
  }
16730
- .u-row-gap-2\.5 {
16934
+ .u-row-gap-px-10 {
16731
16935
  row-gap: 0.625rem;
16732
16936
  }
16733
16937
  .u-row-gap-3 {
16734
16938
  row-gap: 0.75rem;
16735
16939
  }
16736
- .u-row-gap-3\.5 {
16940
+ .u-row-gap-px-14 {
16737
16941
  row-gap: 0.875rem;
16738
16942
  }
16739
16943
  .u-row-gap-4 {
@@ -16742,7 +16946,7 @@ body.is-open-photoviewer {
16742
16946
  .u-row-gap-5 {
16743
16947
  row-gap: 1.25rem;
16744
16948
  }
16745
- .u-row-gap-5\.5 {
16949
+ .u-row-gap-px-22 {
16746
16950
  row-gap: 1.375rem;
16747
16951
  }
16748
16952
  .u-row-gap-6 {
@@ -16751,7 +16955,7 @@ body.is-open-photoviewer {
16751
16955
  .u-row-gap-7 {
16752
16956
  row-gap: 1.75rem;
16753
16957
  }
16754
- .u-row-gap-7\.5 {
16958
+ .u-row-gap-px-30 {
16755
16959
  row-gap: 1.875rem;
16756
16960
  }
16757
16961
  .u-row-gap-8 {
@@ -16831,7 +17035,7 @@ body.is-open-photoviewer {
16831
17035
  -moz-column-gap: 0.25rem;
16832
17036
  column-gap: 0.25rem;
16833
17037
  }
16834
- .u-column-gap-1\.5 {
17038
+ .u-column-gap-px-6 {
16835
17039
  -moz-column-gap: 0.375rem;
16836
17040
  column-gap: 0.375rem;
16837
17041
  }
@@ -16839,7 +17043,7 @@ body.is-open-photoviewer {
16839
17043
  -moz-column-gap: 0.5rem;
16840
17044
  column-gap: 0.5rem;
16841
17045
  }
16842
- .u-column-gap-2\.5 {
17046
+ .u-column-gap-px-10 {
16843
17047
  -moz-column-gap: 0.625rem;
16844
17048
  column-gap: 0.625rem;
16845
17049
  }
@@ -16847,7 +17051,7 @@ body.is-open-photoviewer {
16847
17051
  -moz-column-gap: 0.75rem;
16848
17052
  column-gap: 0.75rem;
16849
17053
  }
16850
- .u-column-gap-3\.5 {
17054
+ .u-column-gap-px-14 {
16851
17055
  -moz-column-gap: 0.875rem;
16852
17056
  column-gap: 0.875rem;
16853
17057
  }
@@ -16859,7 +17063,7 @@ body.is-open-photoviewer {
16859
17063
  -moz-column-gap: 1.25rem;
16860
17064
  column-gap: 1.25rem;
16861
17065
  }
16862
- .u-column-gap-5\.5 {
17066
+ .u-column-gap-px-22 {
16863
17067
  -moz-column-gap: 1.375rem;
16864
17068
  column-gap: 1.375rem;
16865
17069
  }
@@ -16871,7 +17075,7 @@ body.is-open-photoviewer {
16871
17075
  -moz-column-gap: 1.75rem;
16872
17076
  column-gap: 1.75rem;
16873
17077
  }
16874
- .u-column-gap-7\.5 {
17078
+ .u-column-gap-px-30 {
16875
17079
  -moz-column-gap: 1.875rem;
16876
17080
  column-gap: 1.875rem;
16877
17081
  }