fix search box for small devices

This commit is contained in:
Gustavo Cortez 2014-02-03 18:16:35 -03:00
parent e438fb53b7
commit b69b269cbf
1 changed files with 7 additions and 1 deletions

View File

@ -70,7 +70,13 @@ h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
margin: 0;
}
.navbar-form {
width: 20%;
width: 15%;
}
}
@media (max-width: 768px) {
.navbar-form {
width: auto;
}
}