Skip to content

Commit

Permalink
πŸ’„ Add padding to global layout
Browse files Browse the repository at this point in the history
  • Loading branch information
wancup committed Oct 25, 2024
1 parent 2625a1d commit 284ab13
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/features/app-shell/components/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,9 @@ export function Layout(props: ParentProps): JSX.Element {
</Drawer.Positioner>
</Drawer.Root>
</div>
{props.children}
<div class={css({ flexGrow: 1, padding: "16px" })}>
{props.children}
</div>
</div>
</>
);
Expand Down

0 comments on commit 284ab13

Please sign in to comment.