Skip to content

Commit 8373cde

Browse files
committed
fix: prevent horizontal overflow in vertical layout examples
1 parent 2498163 commit 8373cde

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/components/Examples/ExamplesRenderer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ const ExamplesRenderer = ({
161161
</div>
162162
<div
163163
className={cn(
164-
'flex flex-col gap-4 max-w-[calc(100vw-64px)]',
164+
'flex flex-col gap-4 max-w-[calc(100vw-64px)] overflow-hidden',
165165
isVerticalLayout && 'md:flex-row',
166166
isLargeLayout && 'md:flex-col',
167167
)}

0 commit comments

Comments
 (0)