Skip to content

Commit

Permalink
💄 style: increased fontsize on very large screens
Browse files Browse the repository at this point in the history
  • Loading branch information
Ayngie committed Jan 19, 2024
1 parent c99cd59 commit f4ebdda
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ export const StyledDesktopNavBar = styled.nav`
justify-content: center;
width: 100%;
}
@media screen and (min-width: 1500px) {
font-size: 1.3rem;
}
}
}
`;
4 changes: 4 additions & 0 deletions src/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ html, body {
padding: 0;
width: 100%;
background-color: aliceblue; // baby blue

@media screen and (min-width: 1500px) {
font-size: 1.2rem;
}
}
}

0 comments on commit f4ebdda

Please sign in to comment.