diff --git a/src/components/UI/homepage/HomeSection.tsx b/src/components/UI/homepage/HomeSection.tsx index 01d47d30ab..2287d34a5d 100644 --- a/src/components/UI/homepage/HomeSection.tsx +++ b/src/components/UI/homepage/HomeSection.tsx @@ -51,7 +51,7 @@ export const HomeSection: FC = ({ - + {linkLabel} diff --git a/src/pages/index.tsx b/src/pages/index.tsx index d539a2f864..ceb217fea5 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -31,41 +31,11 @@ const HomePage: NextPage = ({}) => { > Geth (go-ethereum) is a{' '} - + Go {' '} implementation of{' '} - + Ethereum {' '} - a gateway into the decentralized web. @@ -139,22 +109,7 @@ const HomePage: NextPage = ({}) => { We welcome contributions from anyone on the internet, and are grateful for even the smallest of fixes! If you'd like to contribute to the Geth source code, please fork the{' '} - + Github repository , fix, commit and send a pull request for the maintainers to review and merge into the diff --git a/src/theme/components/Link.ts b/src/theme/components/Link.ts index 2e747c4324..295f82f5ff 100644 --- a/src/theme/components/Link.ts +++ b/src/theme/components/Link.ts @@ -1,6 +1,6 @@ export const Link = { variants: { - secondary: { + 'button-link-secondary': { color: 'brand.light.primary', bg: 'green.50', _hover: { textDecoration: 'none', bg: 'brand.light.primary', color: 'yellow.50' }, @@ -11,6 +11,20 @@ export const Link = { boxShadow: 'inset 0 0 0 3px #f0f2e2 !important' }, _active: { textDecoration: 'none', bg: 'brand.light.secondary', color: 'yellow.50' } + }, + light: { + textDecoration: 'underline', + color: 'brand.light.primary', + _hover: { color: 'brand.light.body', textDecorationColor: 'brand.light.body' }, + _focus: { + color: 'brand.light.primary', + boxShadow: '0 0 0 1px #11866f !important', + textDecoration: 'none' + }, + _pressed: { + color: 'brand.light.secondary', + textDecorationColor: 'brand.light.secondary' + } } } };