Skip to content

Commit 4b980d5

Browse files
committed
fix: limit example editor height
1 parent 040fb34 commit 4b980d5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/docs/src/page-showcase/Example/Example.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export const Example: FC<Props> = ({ id, name, source }) => {
3636
<SourceRenderer />
3737
) : (
3838
<>
39-
<VStack className={['flex', 'max-lg:hidden']}>
39+
<VStack className={['flex', 'max-lg:hidden', 'aspect-3/2', 'overflow-scroll']}>
4040
<SourceEditor />
4141
</VStack>
4242
<VStack className={['hidden', 'max-lg:flex']}>

0 commit comments

Comments
 (0)