1
0
mirror of https://github.com/uetchy/namae.git synced 2025-03-17 12:30:32 +09:00

chore: fix typo

This commit is contained in:
uetchy 2019-08-01 14:24:36 +09:00
parent d6655a881f
commit decaf36c85
2 changed files with 10 additions and 2 deletions

View File

@ -8,10 +8,11 @@ export default function Footer() {
return ( return (
<Container> <Container>
<p> <p>
Made by <Bold>Yasuaki Uechi</Bold> with{' '} Made with{' '}
<span role="img" aria-label="coffee"> <span role="img" aria-label="coffee">
🦀 🦀
</span> </span>
{' '}by <Bold>Yasuaki Uechi</Bold>
</p> </p>
<Links> <Links>
<ExternalLink href="https://twitter.com/uetschy"> <ExternalLink href="https://twitter.com/uetschy">

View File

@ -79,16 +79,23 @@ const Header = styled.h1`
font-size: 5rem; font-size: 5rem;
line-height: 0.8em; line-height: 0.8em;
padding-bottom: 30px; padding-bottom: 30px;
${mobile} {
font-size: 4rem;
}
` `
const Text = styled.p` const Text = styled.p`
font-size: 1.2em; font-size: 1.2em;
color: #3c3c3c; color: #3c3c3c;
}
` `
const Hero = styled.div` const Hero = styled.div`
padding-top: 40px; padding-top: 40px;
${mobile} {
padding-top: 20px;
}
` `
const List = styled.div` const List = styled.div`