@nswds/app 1.47.0 → 1.48.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/styles.css CHANGED
@@ -443,6 +443,9 @@
443
443
  .top-\[60\%\] {
444
444
  top: 60%;
445
445
  }
446
+ .top-\[180px\] {
447
+ top: 180px;
448
+ }
446
449
  .top-full {
447
450
  top: 100%;
448
451
  }
@@ -1053,9 +1056,6 @@
1053
1056
  .mr-3 {
1054
1057
  margin-right: calc(var(--spacing) * 3);
1055
1058
  }
1056
- .mr-6 {
1057
- margin-right: calc(var(--spacing) * 6);
1058
- }
1059
1059
  .\!mb-0 {
1060
1060
  margin-bottom: calc(var(--spacing) * 0) !important;
1061
1061
  }
@@ -7808,6 +7808,21 @@
7808
7808
  grid-template-columns: repeat(6, minmax(0, 1fr));
7809
7809
  }
7810
7810
  }
7811
+ .lg\:flex-wrap {
7812
+ @media (width >= 64rem) {
7813
+ flex-wrap: wrap;
7814
+ }
7815
+ }
7816
+ .lg\:items-center {
7817
+ @media (width >= 64rem) {
7818
+ align-items: center;
7819
+ }
7820
+ }
7821
+ .lg\:justify-between {
7822
+ @media (width >= 64rem) {
7823
+ justify-content: space-between;
7824
+ }
7825
+ }
7811
7826
  .lg\:justify-end {
7812
7827
  @media (width >= 64rem) {
7813
7828
  justify-content: flex-end;