refactor: update styling and improve code readability across multiple components

This commit is contained in:
CaIon
2026-06-19 19:29:00 +08:00
parent a0de4b560e
commit 50b8f2a272
19 changed files with 646 additions and 364 deletions
+2 -2
View File
@@ -25,8 +25,8 @@ export function showSubmittedData(
toast.message(title, {
description: (
// w-[340px]
<pre className='mt-2 w-full overflow-x-auto rounded-md bg-slate-950 p-4'>
<code className='text-white'>{JSON.stringify(data, null, 2)}</code>
<pre className='bg-muted text-foreground mt-2 w-full overflow-x-auto rounded-md p-4'>
<code>{JSON.stringify(data, null, 2)}</code>
</pre>
),
})