Skip to content

Commit

Permalink
fix: CSS media query issues
Browse files Browse the repository at this point in the history
Caused an unpleasing break of the "Share" button between ~449px to
~452px.
  • Loading branch information
myme committed Mar 3, 2024
1 parent c9de93d commit 3a963cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ a.button, button, input, select {
padding: 0.7em;
}

@media (max-width: 450px) {
@media (max-width: 455px) {
form .group > * {
width: 100%;
display-block: 100%;
Expand Down Expand Up @@ -119,7 +119,7 @@ button.unstyled {
background: none;
}

@media (min-width: 450px) {
@media (min-width: 455px) {
form .group > * {
margin-right: 0;
margin-left: 0;
Expand Down

0 comments on commit 3a963cd

Please sign in to comment.