From 439aab60b025e8a750a615fcae9c8e28757cfdbc Mon Sep 17 00:00:00 2001 From: Kamran Ahmed Date: Mon, 7 Nov 2022 15:26:32 +0400 Subject: [PATCH] Hover style for the hiring link --- components/global-header.tsx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/components/global-header.tsx b/components/global-header.tsx index fec1c89d8..2f00d269c 100644 --- a/components/global-header.tsx +++ b/components/global-header.tsx @@ -14,7 +14,13 @@ type MenuLinkProps = { function MenuLink(props: MenuLinkProps) { const { text, link, target = '_self', isFancy = false } = props; - const gradientProp = isFancy ? { bgGradient: 'linear(to-r, yellow.100, teal.100)', bgClip: 'text' } : {}; + const gradientProp = isFancy ? { + bgGradient: 'linear(to-r, yellow.100, teal.100)', + bgClip: 'text', + _hover: { + color: 'yellow.100' + } + } : {}; return