From 0ac1e9173c9c913751dab01ad940a0e51769ebfc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aykut=20Sara=C3=A7?= Date: Sat, 19 Feb 2022 12:04:34 +0300 Subject: [PATCH] update navbar hover color --- src/components/Navbar/index.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/components/Navbar/index.tsx b/src/components/Navbar/index.tsx index 55d6b25..cf9de7e 100644 --- a/src/components/Navbar/index.tsx +++ b/src/components/Navbar/index.tsx @@ -12,6 +12,10 @@ const StyledNavbar = styled.div` width: 75%; margin: 0 auto 80px; + a:hover { + color: ${({ theme }) => theme.ORANGE}; + } + @media only screen and (max-width: 768px) { width: 100%; }