Skip to content

Commit

Permalink
feat(ux): increase footer text size on small screens
Browse files Browse the repository at this point in the history
  • Loading branch information
mateusfg7 committed Apr 12, 2022
1 parent da26196 commit 874d02c
Showing 1 changed file with 14 additions and 9 deletions.
23 changes: 14 additions & 9 deletions src/components/Footer/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,27 @@ const FooterSection = styled.footer`
backdrop-filter: blur(4px);
p {
font-size: 1.25rem;
padding: 5px;
a {
text-decoration: none;
color: rgba(255, 255, 255, 1);
}
}
p {
a.author {
font-weight: bold;
&.author {
font-weight: bold;
}
&.copy:hover {
cursor: pointer;
text-decoration: underline;
}
}
}
p {
a.copy:hover {
cursor: pointer;
text-decoration: underline;
@media (min-width: 769px) {
p {
font-size: 1rem;
padding: 2px;
}
}
`
Expand Down

0 comments on commit 874d02c

Please sign in to comment.