Skip to content

Commit

Permalink
correct media query for register #110
Browse files Browse the repository at this point in the history
  • Loading branch information
KalTang committed Apr 16, 2021
1 parent 33ef0f6 commit ec74fd6
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion client/src/styles/_register.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,13 @@
box-shadow: 0 2rem 2rem -1.8rem $brand-blue;
margin-top: 2%;
margin-bottom: 5%;
min-width: 85%;
min-width: 70%;
}

@media only screen and (min-width: 300px) {
#register-pg {
width: 90%;
}
}

@media only screen and (min-width: 992px) {
Expand Down

0 comments on commit ec74fd6

Please sign in to comment.