@nswds/app 1.104.0 → 1.105.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
@@ -1058,6 +1058,9 @@
1058
1058
  .mt-4 {
1059
1059
  margin-top: calc(var(--spacing) * 4);
1060
1060
  }
1061
+ .mt-5 {
1062
+ margin-top: calc(var(--spacing) * 5);
1063
+ }
1061
1064
  .mt-6 {
1062
1065
  margin-top: calc(var(--spacing) * 6);
1063
1066
  }
@@ -5944,6 +5947,12 @@
5944
5947
  border-bottom-left-radius: var(--radius-sm);
5945
5948
  }
5946
5949
  }
5950
+ .first\:border-t-0 {
5951
+ &:first-child {
5952
+ border-top-style: var(--tw-border-style);
5953
+ border-top-width: 0px;
5954
+ }
5955
+ }
5947
5956
  .first\:border-l {
5948
5957
  &:first-child {
5949
5958
  border-left-style: var(--tw-border-style);
@@ -5956,6 +5965,11 @@
5956
5965
  border-style: none;
5957
5966
  }
5958
5967
  }
5968
+ .first\:pt-0 {
5969
+ &:first-child {
5970
+ padding-top: calc(var(--spacing) * 0);
5971
+ }
5972
+ }
5959
5973
  .first\:pl-0 {
5960
5974
  &:first-child {
5961
5975
  padding-left: calc(var(--spacing) * 0);
@@ -8866,6 +8880,11 @@
8866
8880
  grid-template-columns: 4rem minmax(0,1fr);
8867
8881
  }
8868
8882
  }
8883
+ .sm\:grid-cols-\[7\.5rem_minmax\(0\,1fr\)\] {
8884
+ @media (width >= 40rem) {
8885
+ grid-template-columns: 7.5rem minmax(0,1fr);
8886
+ }
8887
+ }
8869
8888
  .sm\:grid-cols-\[min\(50\%\,--spacing\(80\)\)_auto\] {
8870
8889
  @media (width >= 40rem) {
8871
8890
  grid-template-columns: min(50%, calc(var(--spacing) * 80)) auto;
@@ -9609,11 +9628,31 @@
9609
9628
  width: 280px;
9610
9629
  }
9611
9630
  }
9631
+ .lg\:w-auto {
9632
+ @media (width >= 64rem) {
9633
+ width: auto;
9634
+ }
9635
+ }
9636
+ .lg\:max-w-\[26rem\] {
9637
+ @media (width >= 64rem) {
9638
+ max-width: 26rem;
9639
+ }
9640
+ }
9612
9641
  .lg\:max-w-none {
9613
9642
  @media (width >= 64rem) {
9614
9643
  max-width: none;
9615
9644
  }
9616
9645
  }
9646
+ .lg\:min-w-48 {
9647
+ @media (width >= 64rem) {
9648
+ min-width: calc(var(--spacing) * 48);
9649
+ }
9650
+ }
9651
+ .lg\:min-w-\[22rem\] {
9652
+ @media (width >= 64rem) {
9653
+ min-width: 22rem;
9654
+ }
9655
+ }
9617
9656
  .lg\:flex-none {
9618
9657
  @media (width >= 64rem) {
9619
9658
  flex: none;
@@ -9659,6 +9698,11 @@
9659
9698
  grid-template-columns: 20rem 1fr;
9660
9699
  }
9661
9700
  }
9701
+ .lg\:flex-row {
9702
+ @media (width >= 64rem) {
9703
+ flex-direction: row;
9704
+ }
9705
+ }
9662
9706
  .lg\:flex-wrap {
9663
9707
  @media (width >= 64rem) {
9664
9708
  flex-wrap: wrap;
@@ -9669,6 +9713,11 @@
9669
9713
  align-items: center;
9670
9714
  }
9671
9715
  }
9716
+ .lg\:items-start {
9717
+ @media (width >= 64rem) {
9718
+ align-items: flex-start;
9719
+ }
9720
+ }
9672
9721
  .lg\:justify-between {
9673
9722
  @media (width >= 64rem) {
9674
9723
  justify-content: space-between;