Skip to content

Commit

Permalink
fix style issue
Browse files Browse the repository at this point in the history
  • Loading branch information
lebalz committed Jun 15, 2024
1 parent bc17ea3 commit 03cd3d9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/docusaurus-theme-classic/src/theme/Tabs/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,9 @@ function TabContent({
// fail-safe or fail-fast? not sure what's best here
return null;
}
return cloneElement(selectedTabItem, {className: clsx('margin-top--md', className)});
return cloneElement(selectedTabItem, {
className: clsx('margin-top--md', className),
});
}
return (
<div className="margin-top--md">
Expand Down

0 comments on commit 03cd3d9

Please sign in to comment.