Add thin scrollbar for AbstractCard raw JSON visual

This commit is contained in:
2023-08-25 23:51:13 -05:00
parent 050fab7a6a
commit 116821aaf0
2 changed files with 20 additions and 12 deletions

View File

@@ -34,7 +34,7 @@ const AbstractCard: FunctionComponent<AbstractCardProps> = ({
) : null}
<div className="max-w-full p-2 px-4">
{showRaw ? (
<pre className="m-2 max-h-[40rem] max-w-full overflow-y-auto whitespace-pre-wrap rounded">
<pre className="scrollbar-thin m-2 max-h-[40rem] max-w-full overflow-y-auto whitespace-pre-wrap rounded">
{JSON.stringify(data, null, 4)}
</pre>
) : (