diff --git a/src/components/ExternalLink/ExternalLink.tsx b/src/components/ExternalLink/ExternalLink.tsx index c49d9c57..d003578a 100644 --- a/src/components/ExternalLink/ExternalLink.tsx +++ b/src/components/ExternalLink/ExternalLink.tsx @@ -24,10 +24,7 @@ const ExternalLink: FC = ({ const StyledLink = styled.a` box-sizing: border-box; color: ${(props) => props.theme.color.text[100]}; - font-size: 1.25rem; font-weight: ${(props) => props.theme.fontWeight.strong}; - padding: ${(props) => props.theme.spacing[3]}px - ${(props) => props.theme.spacing[4]}px; text-align: center; text-decoration: none; width: 100%; diff --git a/src/components/MobileMenu/MobileMenu.tsx b/src/components/MobileMenu/MobileMenu.tsx index b3960dd5..5c5cfbad 100644 --- a/src/components/MobileMenu/MobileMenu.tsx +++ b/src/components/MobileMenu/MobileMenu.tsx @@ -33,18 +33,18 @@ const MobileMenu: React.FC = ({ onDismiss, visible }) => { > Farms - Vote - - + + Forum - - + + Docs - + ) @@ -116,4 +116,22 @@ const StyledLink = styled(NavLink)` } ` +const StyledExternalLink = styled.a` + box-sizing: border-box; + color: ${(props) => props.theme.color.text[100]}; + font-size: 1.25rem; + font-weight: ${(props) => props.theme.fontWeight.strong}; + padding: ${(props) => props.theme.spacing[3]}px + ${(props) => props.theme.spacing[4]}px; + text-align: center; + text-decoration: none; + width: 100%; + &:hover { + color: ${(props) => props.theme.color.text[300]}; + } + &.active { + color: ${(props) => props.theme.color.text[300]}; + } +` + export default MobileMenu