fix: input fields bg (#8389)
This commit is contained in:
parent
81dbd5ab19
commit
465c99f742
7 changed files with 10 additions and 10 deletions
|
|
@ -55,7 +55,7 @@ export function DevErrorComponent({ error, onGoHome, onReload }: DevErrorCompone
|
|||
<div className="space-y-2">
|
||||
<h3 className="text-13 font-medium text-tertiary uppercase tracking-wide">Error Data</h3>
|
||||
<div className="bg-layer-1 rounded-md p-4">
|
||||
<p className="text-13 text-secondary font-mono">{error.data}</p>
|
||||
<p className="text-13 text-secondary font-code">{error.data}</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
@ -95,7 +95,7 @@ export function DevErrorComponent({ error, onGoHome, onReload }: DevErrorCompone
|
|||
<div className="space-y-2">
|
||||
<h3 className="text-13 font-medium text-tertiary uppercase tracking-wide">Stack Trace</h3>
|
||||
<div className="bg-layer-1 rounded-md border border-subtle max-h-96 overflow-auto">
|
||||
<pre className="p-4 text-11 text-secondary font-mono whitespace-pre-wrap break-words">
|
||||
<pre className="p-4 text-11 text-secondary font-code whitespace-pre-wrap break-words">
|
||||
{error.stack}
|
||||
</pre>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue