Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
martonmoro committed Dec 1, 2024
1 parent bc893f2 commit 91bf616
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ const CredentialDisplay = ({
return (
<div className="space-y-2">
{description && <p className="text-xs text-primary">{description}</p>}
<pre className="text-2xs whitespace-pre-wrap break-all bg-neutral-900 p-2 rounded">
<pre className="text-2xs whitespace-pre-wrap break-all bg-neutral-900 p-2 rounded-2xl">
{JSON.stringify(simplifiedData, null, 2)}
</pre>
<div className="flex flex-col gap-1">
Expand Down Expand Up @@ -293,7 +293,7 @@ export const SelectionForm = ({
onSubmit={handleSubmit}
className="flex flex-1 flex-col items-center gap-2 w-full"
>
<div className="w-full space-y-4 overflow-y-auto bg-base-200 max-h-[280px] mb-4 rounded-2xl">
<div className="w-full space-y-4 overflow-y-auto bg-base-200 max-h-[240px] mb-4 rounded-2xl">
{requirements.map((requirement) => {
const matchingCredentials = credentials.filter((cred) =>
cred.matchingRequirements.some(
Expand Down

0 comments on commit 91bf616

Please sign in to comment.