mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-14 12:06:40 +00:00
cleanup, add hover states. Need to get SVG working
This commit is contained in:
parent
18e605e646
commit
ab5c1b3aa9
1 changed files with 30 additions and 13 deletions
|
|
@ -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…
Reference in a new issue