Skip to content

Commit ad84d4d

Browse files
committed
🐛 FIX: Overflow in tables
1 parent 2e35d66 commit ad84d4d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/baseai.dev/src/components/mdx/InlineCodeCopy.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export function InlineCopy({
2424

2525
return (
2626
<span className="inline-flex items-center gap-1 whitespace-nowrap">
27-
<code>{content}</code>
27+
<code className='w-[90%] sm:w-full overflow-scroll'>{content}</code>
2828
<Button
2929
variant="ghost"
3030
className="h-4 w-4 p-0 focus:ring-0"

0 commit comments

Comments
 (0)