Skip to content

Commit 0aa8cbe

Browse files
committed
fix(ui): dashboard content overflowed layout
1 parent c748f09 commit 0aa8cbe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/DashboardLayout.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import {Container} from '@sanity/ui'
33

44
export function DashboardLayout(props: PropsWithChildren<{}>) {
55
return (
6-
<Container width={4} padding={4} sizing="border" style={{minHeight: '100%'}}>
6+
<Container width={4} padding={4} sizing="border" style={{height: '100%', overflowY: 'auto'}}>
77
{props.children}
88
</Container>
99
)

0 commit comments

Comments
 (0)