Add "flex-1" so that the Page component goes full width

This commit is contained in:
gbuomprisco
2024-12-15 17:32:30 +08:00
parent af6217b410
commit 95f9be62d5

View File

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