🩹(react) fix DateRangePicker layout overflow
Resolved a width conflict in the date range picker where the field width conflicted with the component's min-width. This caused content overflow in the field container, resulting in layout issues.
This commit is contained in:
committed by
NathanVss
parent
f685abb36c
commit
9795b7184b
@@ -221,7 +221,12 @@
|
||||
}
|
||||
|
||||
&__range {
|
||||
min-width: px-to-rem(350px);
|
||||
$component-min-width: px-to-rem(350px);
|
||||
min-width: $component-min-width;
|
||||
|
||||
&__container {
|
||||
min-width: $component-min-width;
|
||||
}
|
||||
|
||||
&__separator {
|
||||
background-color: var(--c--theme--colors--greyscale-400);
|
||||
|
||||
Reference in New Issue
Block a user