Fix config editor error pane (#14264)

This commit is contained in:
Josh Hawkins
2024-10-10 08:09:03 -05:00
committed by GitHub
parent bc3a06178b
commit 6a83ff2511

View File

@@ -220,7 +220,7 @@ function ConfigEditor() {
</div>
{error && (
<div className="mt-2 max-h-[30%] overflow-auto whitespace-pre-wrap border-2 border-muted bg-background_alt p-4 text-sm text-danger md:max-h-full">
<div className="mt-2 max-h-[30%] overflow-auto whitespace-pre-wrap border-2 border-muted bg-background_alt p-4 text-sm text-danger md:max-h-[40%]">
{error}
</div>
)}