Adjust width of search control for smaller screens

Refs #228
This commit is contained in:
Will Abson
2016-06-27 10:37:44 +01:00
parent 4f171c8fd4
commit 8d72004133

View File

@@ -1,3 +1,13 @@
.search-field{
.search-field {
width: 267px;
}
@media only screen and (max-width: 400px) {
.search-field {
width: 200px;
}
}
@media only screen and (max-width: 320px) {
.search-field {
width: 160px;
}
}