fix export dialog overflowing due to i18n time lengths

wrap the pair of custom time pickers in a flex-wrap
This commit is contained in:
Josh Hawkins 2025-08-24 17:46:11 -05:00
parent 4fe246f472
commit 9d93bb514c

View File

@ -433,6 +433,7 @@ function CustomTimeSelector({
className={`mt-3 flex items-center rounded-lg bg-secondary text-secondary-foreground ${isDesktop ? "mx-8 gap-2 px-2" : "pl-2"}`} className={`mt-3 flex items-center rounded-lg bg-secondary text-secondary-foreground ${isDesktop ? "mx-8 gap-2 px-2" : "pl-2"}`}
> >
<FaCalendarAlt /> <FaCalendarAlt />
<div className="flex flex-wrap items-center">
<Popover <Popover
open={startOpen} open={startOpen}
onOpenChange={(open) => { onOpenChange={(open) => {
@ -565,6 +566,7 @@ function CustomTimeSelector({
</PopoverContent> </PopoverContent>
</Popover> </Popover>
</div> </div>
</div>
); );
} }