Skip to content

Commit 328dd65

Browse files
committed
Update code-block-tabs.tsx
1 parent 4def8c1 commit 328dd65

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

apps/docs/components/geistdocs/code-block-tabs.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,9 @@ export const CodeBlockTabs = ({
5353
export const CodeBlockTab = (props: ComponentProps<typeof TabsContent>) => (
5454
<TabsContent
5555
{...props}
56-
className={cn("[&_pre]:rounded-none [&_pre]:border-none", props.className)}
56+
className={cn(
57+
"[&>div]:mb-0 [&_pre]:rounded-none [&_pre]:border-none",
58+
props.className
59+
)}
5760
/>
5861
);

0 commit comments

Comments
 (0)