cleanup, add hover states. Need to get SVG working

pull/26459/head^2
Corwin Smith 2 years ago
parent 18e605e646
commit ab5c1b3aa9
  1. 43
      src/components/layouts/Footer.tsx

@ -13,36 +13,38 @@ import {
export const Footer: FC = () => { export const Footer: FC = () => {
return ( return (
<Stack mt={4} border='2px solid' borderColor='brand.light.primary'> <Stack mt={4} border='2px solid' borderColor='brand.light.primary'>
<Grid templateColumns='repeat(2, 1fr)' sx={{ mt: '0 !important' }}> <Grid templateColumns='repeat(2, 1fr)' sx={{ mt: '-2px !important' }}>
<GridItem <GridItem
borderRight='2px solid' borderRight='2px solid'
borderBottom='2px solid' borderBottom='2px solid'
borderColor='brand.light.primary' borderColor='brand.light.primary'
> color='brand.light.primary'
<Stack
p={4}
_hover={{ _hover={{
textDecoration: 'none', textDecoration: 'none',
bg: 'brand.light.primary', bg: 'brand.light.primary',
color: 'yellow.50 !important' color: 'yellow.50 !important'
}} }}
> >
<NextLink href={DOWNLOADS_PAGE} passHref> <NextLink href={DOWNLOADS_PAGE} passHref>
<Link _hover={{ textDecoration: 'none' }}> <Link _hover={{ textDecoration: 'none' }}>
<Text textStyle='quick-link-label'>DOWNLOADS</Text> <Text textStyle='home-section-link-label'>DOWNLOADS</Text>
</Link> </Link>
</NextLink> </NextLink>
</Stack>
</GridItem> </GridItem>
<GridItem <GridItem
borderBottom='2px solid' borderBottom='2px solid'
borderColor='brand.light.primary' borderColor='brand.light.primary'
p={4} color='brand.light.primary'
_hover={{
textDecoration: 'none',
bg: 'brand.light.primary',
color: 'yellow.50 !important'
}}
> >
<NextLink href={DOCS_PAGE} passHref> <NextLink href={DOCS_PAGE} passHref>
<Link _hover={{ textDecoration: 'none' }}> <Link _hover={{ textDecoration: 'none' }}>
<Text textStyle='quick-link-label'>DOCUMENTATION</Text> <Text textStyle='home-section-link-label'>DOCUMENTATION</Text>
</Link> </Link>
</NextLink> </NextLink>
</GridItem> </GridItem>
@ -54,6 +56,11 @@ export const Footer: FC = () => {
borderBottom='2px solid' borderBottom='2px solid'
borderColor='brand.light.primary' borderColor='brand.light.primary'
alignItems="center" alignItems="center"
_hover={{
textDecoration: 'none',
bg: 'brand.light.primary',
color: 'yellow.50 !important'
}}
> >
<Stack alignItems='center' p={4}> <Stack alignItems='center' p={4}>
<NextLink href={GETH_TWITTER_URL} passHref> <NextLink href={GETH_TWITTER_URL} passHref>
@ -69,6 +76,11 @@ export const Footer: FC = () => {
borderBottom='2px solid' borderBottom='2px solid'
borderColor='brand.light.primary' borderColor='brand.light.primary'
alignItems="center" alignItems="center"
_hover={{
textDecoration: 'none',
bg: 'brand.light.primary',
color: 'yellow.50 !important'
}}
> >
<Stack alignItems='center' p={4}> <Stack alignItems='center' p={4}>
<NextLink href={GETH_DISCORD_URL} passHref> <NextLink href={GETH_DISCORD_URL} passHref>
@ -83,6 +95,11 @@ export const Footer: FC = () => {
borderBottom='2px solid' borderBottom='2px solid'
borderColor='brand.light.primary' borderColor='brand.light.primary'
alignItems="center" alignItems="center"
_hover={{
textDecoration: 'none',
bg: 'brand.light.primary',
color: 'yellow.50 !important'
}}
> >
<Stack alignItems='center' p={4}> <Stack alignItems='center' p={4}>
<NextLink href={GETH_REPO_URL} passHref> <NextLink href={GETH_REPO_URL} passHref>

Loading…
Cancel
Save