Skip to content

Commit

Permalink
Merge pull request #86 from wri/fix/footer-links-texts
Browse files Browse the repository at this point in the history
fix(footer): resize footer links in small devices
  • Loading branch information
wri7tno committed Mar 1, 2024
2 parents 5e3d72f + 18ff970 commit c275b06
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/components/footer/styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,11 @@ export const FooterWrapper = styled.div`
align-items: center;
li {
margin-right: 25px;
margin-right: 18px;
${theme.mediaQueries.small} {
margin-right: 25px;
}
a {
font-size: 14px;
Expand Down

0 comments on commit c275b06

Please sign in to comment.