Merge pull request #181 from cmgustavo/bug/01navbar-developers-search

fix search box for small devices
This commit is contained in:
Mario Colque 2014-02-04 04:58:19 -08:00
commit 71949da2ff

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;
}
}