Skip to content

Commit

Permalink
Fix scaling on mobile.
Browse files Browse the repository at this point in the history
  • Loading branch information
elarsaks committed Aug 3, 2023
1 parent ee092a8 commit 7ab40cb
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions src/styles/AppHeader.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
align-items: center;
}

.header-content h1 {
.header-content {
font-size: 24px;
margin: 0;
}
Expand All @@ -34,4 +34,14 @@
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
cursor: pointer;
}



@media screen and (max-width: 600px) {
.logo-title {
align-items: center;
}

.header-content {
font-size: 18px;
}
}

0 comments on commit 7ab40cb

Please sign in to comment.