Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/markdown/CodeBlockView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export function CodeBlockView({
style={style}
>
{(title || showTypeCopyButton) && (
<div className="flex items-center justify-between px-4 py-2 bg-gray-50 dark:bg-gray-900">
<div className="flex items-center justify-between px-4 py-2 bg-gray-50 dark:bg-gray-900 rounded-t-md">
<div className="text-xs text-gray-700 dark:text-gray-300">
{title || (lang?.toLowerCase() === 'bash' ? 'sh' : (lang ?? ''))}
</div>
Expand Down
Loading