@superlogic/spree-pay 0.1.18 → 0.1.20

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/build/index.css CHANGED
@@ -25,6 +25,7 @@
25
25
  --color-gray-100: oklch(96.7% 0.003 264.542);
26
26
  --color-gray-200: oklch(92.8% 0.006 264.531);
27
27
  --color-gray-300: oklch(87.2% 0.01 258.338);
28
+ --color-gray-400: oklch(70.7% 0.022 261.325);
28
29
  --color-gray-900: oklch(21% 0.034 264.665);
29
30
  --color-black: #000;
30
31
  --color-white: #fff;
@@ -411,9 +412,18 @@
411
412
  .sl-spreepay .h-full {
412
413
  height: 100%;
413
414
  }
415
+ .sl-spreepay .max-h-\[40vh\] {
416
+ max-height: 40vh;
417
+ }
418
+ .sl-spreepay .max-h-\[90vh\] {
419
+ max-height: 90vh;
420
+ }
414
421
  .sl-spreepay .max-h-\[600px\] {
415
422
  max-height: 600px;
416
423
  }
424
+ .sl-spreepay .min-h-11 {
425
+ min-height: calc(var(--spacing) * 11);
426
+ }
417
427
  .sl-spreepay .w-2\.5 {
418
428
  width: calc(var(--spacing) * 2.5);
419
429
  }
@@ -530,6 +540,9 @@
530
540
  .sl-spreepay .overflow-hidden {
531
541
  overflow: hidden;
532
542
  }
543
+ .sl-spreepay .overflow-y-auto {
544
+ overflow-y: auto;
545
+ }
533
546
  .sl-spreepay .rounded-3xl {
534
547
  border-radius: var(--radius-3xl);
535
548
  }
@@ -650,6 +663,9 @@
650
663
  .sl-spreepay .bg-gray-200 {
651
664
  background-color: var(--color-gray-200);
652
665
  }
666
+ .sl-spreepay .bg-gray-400 {
667
+ background-color: var(--color-gray-400);
668
+ }
653
669
  .sl-spreepay .bg-muted {
654
670
  background-color: var(--muted);
655
671
  }