@powerhousedao/design-system 1.39.28-dev.1 → 1.39.29-dev.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/style.css CHANGED
@@ -711,7 +711,7 @@
711
711
  --color-green-700: hsl(136 52% 55%);
712
712
  --color-green-800: hsl(136 53% 49%);
713
713
  --color-green-900: hsl(136 53% 43%);
714
- --color-blue-50: oklch(97% 0.014 254.604);
714
+ --color-blue-50: oklch(0.97 0.014 254.604);
715
715
  --color-blue-100: hsl(209 100% 90%);
716
716
  --color-blue-200: hsl(209 97% 85%);
717
717
  --color-blue-300: hsl(209 100% 80%);
@@ -777,7 +777,17 @@
777
777
  --default-transition-duration: 150ms;
778
778
  --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
779
779
  --default-font-family: var(--font-sans);
780
+ --default-font-feature-settings: var(--font-sans--font-feature-settings);
781
+ --default-font-variation-settings: var(
782
+ --font-sans--font-variation-settings
783
+ );
780
784
  --default-mono-font-family: var(--font-mono);
785
+ --default-mono-font-feature-settings: var(
786
+ --font-mono--font-feature-settings
787
+ );
788
+ --default-mono-font-variation-settings: var(
789
+ --font-mono--font-variation-settings
790
+ );
781
791
  --color-charcoal-300: hsl(221 17% 67%);
782
792
  --color-charcoal-700: hsl(219 17% 34%);
783
793
  --color-charcoal-800: hsl(221 17% 26%);
@@ -803,11 +813,14 @@
803
813
  line-height: 1.5;
804
814
  -webkit-text-size-adjust: 100%;
805
815
  tab-size: 4;
806
- font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
816
+ font-family: var( --default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" );
807
817
  font-feature-settings: var(--default-font-feature-settings, normal);
808
- font-variation-settings: var(--default-font-variation-settings, normal);
818
+ font-variation-settings: var( --default-font-variation-settings, normal );
809
819
  -webkit-tap-highlight-color: transparent;
810
820
  }
821
+ body {
822
+ line-height: inherit;
823
+ }
811
824
  hr {
812
825
  height: 0;
813
826
  color: inherit;
@@ -830,9 +843,9 @@
830
843
  font-weight: bolder;
831
844
  }
832
845
  code, kbd, samp, pre {
833
- font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
834
- font-feature-settings: var(--default-mono-font-feature-settings, normal);
835
- font-variation-settings: var(--default-mono-font-variation-settings, normal);
846
+ font-family: var( --default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace );
847
+ font-feature-settings: var( --default-mono-font-feature-settings, normal );
848
+ font-variation-settings: var( --default-mono-font-variation-settings, normal );
836
849
  font-size: 1em;
837
850
  }
838
851
  small {
@@ -896,13 +909,9 @@
896
909
  }
897
910
  ::placeholder {
898
911
  opacity: 1;
899
- }
900
- @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
901
- ::placeholder {
902
- color: currentcolor;
903
- @supports (color: color-mix(in lab, red, red)) {
904
- color: color-mix(in oklab, currentcolor 50%, transparent);
905
- }
912
+ color: currentColor;
913
+ @supports (color: color-mix(in lab, red, red)) {
914
+ color: color-mix(in oklab, currentColor 50%, transparent);
906
915
  }
907
916
  }
908
917
  textarea {