Skip to content

Commit

Permalink
refactor: Update ConnectOverlay component to use dark mode colors for…
Browse files Browse the repository at this point in the history
… loading spinner
  • Loading branch information
daniel-vahn committed May 28, 2024
1 parent 3663387 commit b664098
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/components/connectOverlay/ConnectOverlay.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,11 @@ const ConnectOverlay: React.FC<Props> = ({
{connectionState === 'connecting' && (
<>
<div className="my-10">
<PulseLoader size={12} margin={5} color="#2D2D2D" />
<PulseLoader
size={12}
margin={5}
color={darkMode ? '#DEDEDE' : '#2D2D2D'}
/>
</div>
<div>
<p className="text-lg m-4 mt-2 dark:text-customDarkModeTextColor">
Expand Down

0 comments on commit b664098

Please sign in to comment.