change requests for cleanup

pull/26459/head^2
Corwin Smith 2 years ago
parent 0ff5f8ea5a
commit 6f719286dd
  1. 67
      src/components/layouts/Footer.tsx

@ -29,14 +29,14 @@ export const Footer: FC = () => {
borderColor='brand.light.primary' borderColor='brand.light.primary'
> >
<Flex <Flex
sx={{ mt: '-2px !important' }}
borderBottom={{ borderBottom={{
base: '2px solid', base: '2px solid',
md: 'none' md: 'none'
}} }}
borderColor='brand.light.primary' borderColor='brand.light.primary'
> >
<Stack <NextLink href={DOWNLOADS_PAGE} passHref>
<Link
flex={1} flex={1}
color='brand.light.primary' color='brand.light.primary'
_hover={{ _hover={{
@ -44,18 +44,17 @@ export const Footer: FC = () => {
bg: 'brand.light.primary', bg: 'brand.light.primary',
color: 'yellow.50 !important' color: 'yellow.50 !important'
}} }}
justifyContent='center' height='full'
borderRight='2px solid' borderRight='2px solid'
borderColor='brand.light.primary' borderColor='brand.light.primary'
> >
<NextLink href={DOWNLOADS_PAGE} passHref>
<Link _hover={{ textDecoration: 'none' }}>
<Text textStyle='home-section-link-label'>DOWNLOADS</Text> <Text textStyle='home-section-link-label'>DOWNLOADS</Text>
</Link> </Link>
</NextLink> </NextLink>
</Stack>
<Stack
<NextLink href={DOCS_PAGE} passHref>
<Link
flex={1} flex={1}
color='brand.light.primary' color='brand.light.primary'
_hover={{ _hover={{
@ -63,23 +62,24 @@ export const Footer: FC = () => {
bg: 'brand.light.primary', bg: 'brand.light.primary',
color: 'yellow.50 !important' color: 'yellow.50 !important'
}} }}
height='full'
borderRight={{ borderRight={{
base: 'none', base: 'none',
md: '2px solid' md: '2px solid'
}} }}
borderColor='brand.light.primary' borderColor='brand.light.primary'
justifyContent='center'
> >
<NextLink href={DOCS_PAGE} passHref>
<Link _hover={{ textDecoration: 'none' }}>
<Text textStyle='home-section-link-label'>DOCUMENTATION</Text> <Text textStyle='home-section-link-label'>DOCUMENTATION</Text>
</Link> </Link>
</NextLink> </NextLink>
</Stack>
</Flex> </Flex>
<Flex sx={{ mt: '0 !important' }}> <Flex>
<Stack <NextLink href={GETH_TWITTER_URL} passHref>
<Link
isExternal
p={4}
display='flex'
flex={1} flex={1}
data-group data-group
borderLeft={{ borderLeft={{
@ -92,13 +92,12 @@ export const Footer: FC = () => {
_hover={{ _hover={{
bg: 'brand.light.primary', bg: 'brand.light.primary',
}} }}
alignItems='center' justifyContent='center'
> >
<NextLink href={GETH_TWITTER_URL} passHref>
<Link isExternal p={4}>
<TwitterIcon <TwitterIcon
w={8} w={6}
height={8} height={6}
margin='auto'
_groupHover={{ _groupHover={{
svg: { svg: {
path:{fill: 'yellow.50 !important'} path:{fill: 'yellow.50 !important'}
@ -107,24 +106,25 @@ export const Footer: FC = () => {
/> />
</Link> </Link>
</NextLink> </NextLink>
</Stack>
<Stack <NextLink href={GETH_DISCORD_URL} passHref>
<Link
isExternal
p={4}
data-group data-group
display='flex'
flex={1} flex={1}
_hover={{ _hover={{
bg: 'brand.light.primary', bg: 'brand.light.primary',
}} }}
alignItems='center' justifyContent='center'
borderWidth='2px' borderWidth='2px'
borderStyle='none solid' borderStyle='none solid'
borderColor='brand.light.primary' borderColor='brand.light.primary'
> >
<NextLink href={GETH_DISCORD_URL} passHref>
<Link isExternal p={4}>
<DiscordIcon <DiscordIcon
w={8} w={6}
height={8} height={6}
_groupHover={{ _groupHover={{
svg: { svg: {
path:{fill: 'yellow.50 !important'} path:{fill: 'yellow.50 !important'}
@ -133,21 +133,22 @@ export const Footer: FC = () => {
/> />
</Link> </Link>
</NextLink> </NextLink>
</Stack>
<Stack <NextLink href={GETH_REPO_URL} passHref>
<Link
isExternal
p={4}
data-group data-group
flex={1} flex={1}
display='flex'
_hover={{ _hover={{
bg: 'brand.light.primary', bg: 'brand.light.primary',
}} }}
alignItems='center' justifyContent='center'
> >
<NextLink href={GETH_REPO_URL} passHref>
<Link isExternal p={4}>
<GitHubIcon <GitHubIcon
w={7} w={6}
height={7} height={6}
_groupHover={{ _groupHover={{
svg: { svg: {
path:{fill: 'yellow.50 !important'} path:{fill: 'yellow.50 !important'}
@ -156,13 +157,11 @@ export const Footer: FC = () => {
/> />
</Link> </Link>
</NextLink> </NextLink>
</Stack>
</Flex> </Flex>
</Flex> </Flex>
<Stack <Stack
p={4} p={4}
sx={{ mt: '0 !important' }}
textAlign='center' textAlign='center'
justifyContent='center' justifyContent='center'
borderWidth='2px' borderWidth='2px'

Loading…
Cancel
Save