@nswds/app 1.59.0 → 1.60.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
@@ -2441,6 +2441,12 @@
2441
2441
  background-color: color-mix(in oklab, var(--color-black) 50%, transparent);
2442
2442
  }
2443
2443
  }
2444
+ .bg-black\/80 {
2445
+ background-color: color-mix(in srgb, #000 80%, transparent);
2446
+ @supports (color: color-mix(in lab, red, red)) {
2447
+ background-color: color-mix(in oklab, var(--color-black) 80%, transparent);
2448
+ }
2449
+ }
2444
2450
  .bg-blue-50 {
2445
2451
  background-color: var(--color-blue-50);
2446
2452
  }
@@ -7356,6 +7362,11 @@
7356
7362
  --tw-exit-translate-x: -100%;
7357
7363
  }
7358
7364
  }
7365
+ .data-\[state\=closed\]\:slide-out-to-left-1\/2 {
7366
+ &[data-state=closed] {
7367
+ --tw-exit-translate-x: -50%;
7368
+ }
7369
+ }
7359
7370
  .data-\[state\=closed\]\:slide-out-to-right {
7360
7371
  &[data-state=closed] {
7361
7372
  --tw-exit-translate-x: 100%;
@@ -7366,6 +7377,11 @@
7366
7377
  --tw-exit-translate-y: -100%;
7367
7378
  }
7368
7379
  }
7380
+ .data-\[state\=closed\]\:slide-out-to-top-\[48\%\] {
7381
+ &[data-state=closed] {
7382
+ --tw-exit-translate-y: -48%;
7383
+ }
7384
+ }
7369
7385
  .data-\[state\=closed\]\:zoom-out-95 {
7370
7386
  &[data-state=closed] {
7371
7387
  --tw-exit-scale: .95;
@@ -7548,6 +7564,11 @@
7548
7564
  --tw-enter-translate-x: -100%;
7549
7565
  }
7550
7566
  }
7567
+ .data-\[state\=open\]\:slide-in-from-left-1\/2 {
7568
+ &[data-state=open] {
7569
+ --tw-enter-translate-x: -50%;
7570
+ }
7571
+ }
7551
7572
  .data-\[state\=open\]\:slide-in-from-right {
7552
7573
  &[data-state=open] {
7553
7574
  --tw-enter-translate-x: 100%;
@@ -7558,6 +7579,11 @@
7558
7579
  --tw-enter-translate-y: -100%;
7559
7580
  }
7560
7581
  }
7582
+ .data-\[state\=open\]\:slide-in-from-top-\[48\%\] {
7583
+ &[data-state=open] {
7584
+ --tw-enter-translate-y: -48%;
7585
+ }
7586
+ }
7561
7587
  .data-\[state\=open\]\:zoom-in-90 {
7562
7588
  &[data-state=open] {
7563
7589
  --tw-enter-scale: .9;
@@ -8075,6 +8101,15 @@
8075
8101
  gap: calc(var(--spacing) * 4);
8076
8102
  }
8077
8103
  }
8104
+ .sm\:space-x-2 {
8105
+ @media (width >= 40rem) {
8106
+ :where(& > :not(:last-child)) {
8107
+ --tw-space-x-reverse: 0;
8108
+ margin-inline-start: calc(calc(var(--spacing) * 2) * var(--tw-space-x-reverse));
8109
+ margin-inline-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-x-reverse)));
8110
+ }
8111
+ }
8112
+ }
8078
8113
  .sm\:divide-x {
8079
8114
  @media (width >= 40rem) {
8080
8115
  :where(& > :not(:last-child)) {
@@ -8096,6 +8131,11 @@
8096
8131
  }
8097
8132
  }
8098
8133
  }
8134
+ .sm\:rounded-lg {
8135
+ @media (width >= 40rem) {
8136
+ border-radius: var(--radius-lg);
8137
+ }
8138
+ }
8099
8139
  .sm\:border-x {
8100
8140
  @media (width >= 40rem) {
8101
8141
  border-inline-style: var(--tw-border-style);
@@ -11936,6 +11976,10 @@ body {
11936
11976
  [inert] ::-webkit-scrollbar {
11937
11977
  display: none;
11938
11978
  }
11979
+ button:not(:disabled),
11980
+ [role=button]:not(:disabled) {
11981
+ cursor: pointer;
11982
+ }
11939
11983
  }
11940
11984
  .dark {
11941
11985
  --sidebar: hsl(240 5.9% 10%);