Skip to content

Commit

Permalink
fix: limit the wrapper width to 960 (#8120)
Browse files Browse the repository at this point in the history
  • Loading branch information
mintsweet authored Sep 30, 2024
1 parent 11db8e9 commit 95734de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config-ui/src/routes/layout/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ export const Layout = () => {
))}
</Header>
<Content style={{ overflowY: 'auto' }}>
<div style={{ padding: 24, margin: '0 auto', maxWidth: 1280 }}>
<div style={{ padding: 24, margin: '0 auto', maxWidth: 1280, minWidth: 960 }}>
<OnboardCard style={{ marginBottom: 32 }} />
<Outlet />
</div>
Expand Down

0 comments on commit 95734de

Please sign in to comment.