fix: add scrollbar-thin to CodeSnippet pre element

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-01 13:52:05 +01:00
parent 002edc1532
commit 19cc44c102

View File

@@ -29,7 +29,7 @@ export function CodeSnippet({ code, maxHeight }: CodeSnippetProps) {
{copied ? 'Copied' : 'Copy'} {copied ? 'Copied' : 'Copy'}
</button> </button>
<pre <pre
className="p-4 overflow-x-auto font-mono text-[11px] text-white/55 leading-relaxed" className="p-4 overflow-x-auto font-mono text-[11px] text-white/55 leading-relaxed scrollbar-thin"
style={maxHeight ? { maxHeight, overflowY: 'auto' } : undefined} style={maxHeight ? { maxHeight, overflowY: 'auto' } : undefined}
> >
<code>{code}</code> <code>{code}</code>