@algorithm-shift/design-system 1.3.119 → 1.3.121

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.css CHANGED
@@ -805,6 +805,9 @@
805
805
  .w-\[20px\] {
806
806
  width: 20px;
807
807
  }
808
+ .w-\[30\%\] {
809
+ width: 30%;
810
+ }
808
811
  .w-\[34px\] {
809
812
  width: 34px;
810
813
  }
@@ -814,6 +817,9 @@
814
817
  .w-\[100px\] {
815
818
  width: 100px;
816
819
  }
820
+ .w-\[180px\] {
821
+ width: 180px;
822
+ }
817
823
  .w-\[var\(--radix-popover-trigger-width\)\] {
818
824
  width: var(--radix-popover-trigger-width);
819
825
  }
@@ -838,6 +844,9 @@
838
844
  .max-w-\[48px\] {
839
845
  max-width: 48px;
840
846
  }
847
+ .max-w-\[70\%\] {
848
+ max-width: 70%;
849
+ }
841
850
  .max-w-\[90\%\] {
842
851
  max-width: 90%;
843
852
  }
@@ -874,6 +883,9 @@
874
883
  .min-w-\[120px\] {
875
884
  min-width: 120px;
876
885
  }
886
+ .min-w-\[180px\] {
887
+ min-width: 180px;
888
+ }
877
889
  .min-w-\[200px\] {
878
890
  min-width: 200px;
879
891
  }
@@ -886,6 +898,9 @@
886
898
  .flex-1 {
887
899
  flex: 1;
888
900
  }
901
+ .flex-\[2\] {
902
+ flex: 2;
903
+ }
889
904
  .flex-shrink-0 {
890
905
  flex-shrink: 0;
891
906
  }
@@ -1001,6 +1016,9 @@
1001
1016
  .items-start {
1002
1017
  align-items: flex-start;
1003
1018
  }
1019
+ .items-stretch {
1020
+ align-items: stretch;
1021
+ }
1004
1022
  .justify-between {
1005
1023
  justify-content: space-between;
1006
1024
  }
@@ -1877,6 +1895,9 @@
1877
1895
  .text-yellow-400 {
1878
1896
  color: var(--color-yellow-400);
1879
1897
  }
1898
+ .capitalize {
1899
+ text-transform: capitalize;
1900
+ }
1880
1901
  .lowercase {
1881
1902
  text-transform: lowercase;
1882
1903
  }