fix onboarding colors

This commit is contained in:
Carl-Gerhard Lindesvärd
2024-06-16 23:24:58 +02:00
parent 1b4a281b93
commit da02b1ebcf

View File

@@ -54,7 +54,7 @@ const VerifyListener = ({ client, events: _events, onVerified }: Props) => {
} }
return ( return (
<Loader2 size={40} className="text-highlight shrink-0 animate-spin" /> <Loader2 size={40} className="shrink-0 animate-spin text-highlight" />
); );
}; };
@@ -70,7 +70,9 @@ const VerifyListener = ({ client, events: _events, onVerified }: Props) => {
<div <div
className={cn( className={cn(
'my-6 flex gap-6 rounded-xl p-4 md:p-6', 'my-6 flex gap-6 rounded-xl p-4 md:p-6',
isConnected ? 'bg-emerald-100' : 'bg-highlight' isConnected
? 'bg-emerald-100 dark:bg-emerald-700'
: 'bg-blue-100 dark:bg-blue-700'
)} )}
> >
{renderIcon()} {renderIcon()}