Skip to content

Commit

Permalink
feat: text size fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
adtm committed Jan 30, 2021
1 parent 6b377f0 commit 2374dfe
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const Footer = () => (
justifyContent="flex-end"
>
<TextLink
name="tomas.eglinskas@gmail.com"
name="Email"
href="mailto:tomas.eglinskas@gmail.com"
/>
<TextLink
Expand Down
6 changes: 3 additions & 3 deletions src/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const Header = () => {
>
<Heading
as="h1"
fontSize={{ base: 20, md: 37 }}
fontSize={{ base: "18px", sm: 20, md: 37 }}
letterSpacing={1}
fontWeight={400}
>
Expand All @@ -41,7 +41,7 @@ const Header = () => {
>
<Link to="/">
<Button
fontSize={{ base: 20, md: 37 }}
fontSize={{ base: "18px", sm: 20, md: 37 }}
fontWeight={400}
aria-label="About"
>
Expand All @@ -50,7 +50,7 @@ const Header = () => {
</Link>
<Link to="/blog">
<Button
fontSize={{ base: 20, md: 37 }}
fontSize={{ base: "18px", sm: 20, md: 37 }}
fontWeight={400}
aria-label="Blog"
>
Expand Down
4 changes: 2 additions & 2 deletions src/components/pages/About.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ const About = () => (
<Box ml={{ base: 0, sm: 0, lg: 0 }}>
<Heading
as="h2"
fontSize={{ base: "40px", md: "45px", lg: "55px" }}
fontSize={{ base: "30px", md: "40px", lg: "55px" }}
fontWeight={400}
pb={{ base: 10, md: 5 }}
letterSpacing={1}
lineHeight={1.6}
lineHeight={{ base: 1.3, sm: 1.6}}
maxW={1000}
>
<Text>
Expand Down

0 comments on commit 2374dfe

Please sign in to comment.