Prevent flex container overflow with min-w-0

This commit is contained in:
gbuomprisco
2025-02-14 21:47:15 +07:00
parent a4cb758ffa
commit be88bdec6e

View File

@@ -35,7 +35,7 @@ function PageWithSidebar(props: PageProps) {
const { Navigation, Children, MobileNavigation } = getSlotsFromPage(props);
return (
<div className={cn('flex flex-1', props.className)}>
<div className={cn('flex min-w-0 flex-1', props.className)}>
{Navigation}
<div