@nswds/app 1.104.0 → 1.106.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/globals.css CHANGED
@@ -2858,6 +2858,12 @@
2858
2858
  .bg-primary-50 {
2859
2859
  background-color: var(--color-primary-50);
2860
2860
  }
2861
+ .bg-primary-50\/40 {
2862
+ background-color: var(--color-primary-50);
2863
+ @supports (color: color-mix(in lab, red, red)) {
2864
+ background-color: color-mix(in oklab, var(--color-primary-50) 40%, transparent);
2865
+ }
2866
+ }
2861
2867
  .bg-primary-50\/50 {
2862
2868
  background-color: var(--color-primary-50);
2863
2869
  @supports (color: color-mix(in lab, red, red)) {
@@ -8766,11 +8772,21 @@
8766
8772
  min-height: calc(var(--spacing) * 12);
8767
8773
  }
8768
8774
  }
8775
+ .sm\:min-h-\[20rem\] {
8776
+ @media (width >= 40rem) {
8777
+ min-height: 20rem;
8778
+ }
8779
+ }
8769
8780
  .sm\:min-h-\[22rem\] {
8770
8781
  @media (width >= 40rem) {
8771
8782
  min-height: 22rem;
8772
8783
  }
8773
8784
  }
8785
+ .sm\:min-h-\[24rem\] {
8786
+ @media (width >= 40rem) {
8787
+ min-height: 24rem;
8788
+ }
8789
+ }
8774
8790
  .sm\:min-h-\[26rem\] {
8775
8791
  @media (width >= 40rem) {
8776
8792
  min-height: 26rem;
@@ -8947,6 +8963,11 @@
8947
8963
  }
8948
8964
  }
8949
8965
  }
8966
+ .sm\:self-center {
8967
+ @media (width >= 40rem) {
8968
+ align-self: center;
8969
+ }
8970
+ }
8950
8971
  .sm\:border-x {
8951
8972
  @media (width >= 40rem) {
8952
8973
  border-inline-style: var(--tw-border-style);
@@ -9609,11 +9630,21 @@
9609
9630
  width: 280px;
9610
9631
  }
9611
9632
  }
9633
+ .lg\:w-auto {
9634
+ @media (width >= 64rem) {
9635
+ width: auto;
9636
+ }
9637
+ }
9612
9638
  .lg\:max-w-none {
9613
9639
  @media (width >= 64rem) {
9614
9640
  max-width: none;
9615
9641
  }
9616
9642
  }
9643
+ .lg\:min-w-48 {
9644
+ @media (width >= 64rem) {
9645
+ min-width: calc(var(--spacing) * 48);
9646
+ }
9647
+ }
9617
9648
  .lg\:flex-none {
9618
9649
  @media (width >= 64rem) {
9619
9650
  flex: none;
@@ -9659,6 +9690,11 @@
9659
9690
  grid-template-columns: 20rem 1fr;
9660
9691
  }
9661
9692
  }
9693
+ .lg\:flex-row {
9694
+ @media (width >= 64rem) {
9695
+ flex-direction: row;
9696
+ }
9697
+ }
9662
9698
  .lg\:flex-wrap {
9663
9699
  @media (width >= 64rem) {
9664
9700
  flex-wrap: wrap;
@@ -9669,6 +9705,11 @@
9669
9705
  align-items: center;
9670
9706
  }
9671
9707
  }
9708
+ .lg\:items-start {
9709
+ @media (width >= 64rem) {
9710
+ align-items: flex-start;
9711
+ }
9712
+ }
9672
9713
  .lg\:justify-between {
9673
9714
  @media (width >= 64rem) {
9674
9715
  justify-content: space-between;