@juspay/svelte-ui-components 2.33.0 → 2.34.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.
|
@@ -471,8 +471,11 @@
|
|
|
471
471
|
.select-dropdown {
|
|
472
472
|
position: absolute;
|
|
473
473
|
top: 100%;
|
|
474
|
-
left: 0;
|
|
475
|
-
right: 0;
|
|
474
|
+
left: var(--select-dropdown-left, 0);
|
|
475
|
+
right: var(--select-dropdown-right, 0);
|
|
476
|
+
min-width: var(--select-dropdown-min-width, auto);
|
|
477
|
+
max-width: var(--select-dropdown-max-width, none);
|
|
478
|
+
width: var(--select-dropdown-width, auto);
|
|
476
479
|
margin-top: var(--select-dropdown-gap, 4px);
|
|
477
480
|
background: var(--select-dropdown-background, #ffffff);
|
|
478
481
|
border: var(--select-dropdown-border, 1px solid #cccccc);
|
|
@@ -485,9 +488,10 @@
|
|
|
485
488
|
|
|
486
489
|
.select-dropdown-right {
|
|
487
490
|
left: auto;
|
|
488
|
-
right: 0;
|
|
489
|
-
min-width: 100
|
|
490
|
-
width: max-
|
|
491
|
+
right: var(--select-dropdown-right, 0);
|
|
492
|
+
min-width: var(--select-dropdown-min-width, 100%);
|
|
493
|
+
max-width: var(--select-dropdown-max-width, none);
|
|
494
|
+
width: var(--select-dropdown-width, max-content);
|
|
491
495
|
}
|
|
492
496
|
|
|
493
497
|
.select-option {
|