fix: calculate

This commit is contained in:
2026-03-01 10:11:52 +01:00
parent e12cc6592e
commit db37fb1ae2
2 changed files with 1 additions and 6 deletions

View File

@@ -36,7 +36,7 @@ function CodeBlock({ code, filename }: { code: string; filename: string }) {
return (
<div className="space-y-2">
<div className="relative group rounded-xl overflow-hidden border border-white/5" style={{ background: '#06060e' }}>
<pre className="p-4 overflow-x-auto font-mono text-[11px] text-white/55 leading-relaxed max-h-64">
<pre className="p-4 overflow-x-auto font-mono text-[11px] text-white/55 leading-relaxed max-h-64 scrollbar">
<code>{code}</code>
</pre>
</div>