Skip to content

Commit

Permalink
Fix: Set ProfileSignOut class width to auto on screen sized below 768…
Browse files Browse the repository at this point in the history
…px to fix messed up mobile navigation bar
  • Loading branch information
vkleer committed Nov 1, 2022
1 parent 26f38e1 commit 6629a69
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/styles/NavBar.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,15 @@
width: 215px;
}


@media screen and (max-width: 1200px) {
.ProfileSignOut {
width: 52px !important;
}
}

@media screen and (max-width: 768px) {
.ProfileSignOut {
width: auto !important;
}
}

0 comments on commit 6629a69

Please sign in to comment.