fix: reduce ExportPanel code snippet maxHeight to 13rem

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-01 14:04:17 +01:00
parent 19cc44c102
commit 6d6505e5dc

View File

@@ -36,8 +36,8 @@ export function ExportPanel({ config }: Props) {
))}
</div>
</div>
{tab === 'css' && <CodeSnippet code={css} maxHeight="16rem" />}
{tab === 'tailwind' && <CodeSnippet code={tailwind} maxHeight="16rem" />}
{tab === 'css' && <CodeSnippet code={css} maxHeight="13rem" />}
{tab === 'tailwind' && <CodeSnippet code={tailwind} maxHeight="13rem" />}
</div>
);
}