diff options
Diffstat (limited to 'frontend/src/components/Footer.js')
| -rw-r--r-- | frontend/src/components/Footer.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/frontend/src/components/Footer.js b/frontend/src/components/Footer.js index 1074fcb..4afc7ba 100644 --- a/frontend/src/components/Footer.js +++ b/frontend/src/components/Footer.js @@ -2,7 +2,9 @@ import React from 'react'; import styled from 'styled-components' const SpacedFooter = styled.div` - margin: 2em 0; + & > p { + font-size: 0.8em; + } & a { color: ${p => p.theme.colors.text}; } @@ -17,7 +19,7 @@ const Link = (props) => { const Footer = () => { return ( <SpacedFooter> - <p>(c) 2020 — <Link link="https://jzhao.xyz/" name="jacky" />, <Link link="https://ryanmehri.tech/" name="ryan" /></p> + <p>(c) 2020 // <Link link="https://jzhao.xyz/" name="jacky" />, <Link link="https://ryanmehri.tech/" name="ryan" /></p> </SpacedFooter> ); } |