Skip to content

Commit 15ba863

Browse files
style: external icons to match our color
1 parent 6ceec6f commit 15ba863

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

components/AuthModal.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,8 @@ export const AuthModal: React.FC<AuthModalProps> = ({
349349
setIsVerifying(false);
350350
setIsRedirecting(false);
351351
}}
352-
className="w-full text-center text-sm text-blue-400 hover:text-blue-300"
352+
className="w-full text-center text-sm hover:opacity-80 transition-opacity"
353+
style={{ color: "#3f51b5" }}
353354
>
354355
← Back
355356
</button>

components/Header.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ const Header = () => {
5353
];
5454

5555
const ExternalLinkIcon = () => (
56-
<FiExternalLink className="inline-block ml-1 w-3 h-3 text-blue-400" />
56+
<FiExternalLink className="inline-block ml-1 w-3 h-3 external-link-icon" />
5757
);
5858

5959
return (

0 commit comments

Comments
 (0)