Skip to content

Commit

Permalink
fix: layout overflow error (#7648)
Browse files Browse the repository at this point in the history
  • Loading branch information
mintsweet authored and action_bot committed Jun 21, 2024
1 parent 45d1926 commit abd9fcf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions config-ui/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -66,3 +66,7 @@ p {
font-size: 12px;
color: #94959f;
}

#root {
height: 100vh;
}
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 @@ -84,7 +84,7 @@ export const Layout = () => {
}

return (
<AntdLayout style={{ height: '100vh' }}>
<AntdLayout style={{ height: '100%', overflow: 'hidden' }}>
<Helmet>
<title>
{title ? `${title} - ` : ''}
Expand Down

0 comments on commit abd9fcf

Please sign in to comment.