Fix search bar width for mobile nav (#575)

* Shorten search bar width for mobile nav

* Remove min-device-width

* Use max-width
This commit is contained in:
Yangshun Tay 2018-04-17 08:17:20 -07:00 committed by Joel Marcey
parent 159b80df94
commit ba024a25c7

View file

@ -709,9 +709,9 @@ input#search_input_react:focus, input#search_input_react:active {
color: #fff; color: #fff;
width: 220px; width: 220px;
} }
@media only screen and (min-device-width: 360px) and (max-device-width: 735px) { @media only screen and (max-width: 735px) {
.navSearchWrapper { .navSearchWrapper {
width: 50%; width: 40%;
} }
} }
input::-webkit-input-placeholder { input::-webkit-input-placeholder {