From b69b269cbfe55d7b38bbfe5d306b2ae9ca3475c0 Mon Sep 17 00:00:00 2001 From: Gustavo Cortez Date: Mon, 3 Feb 2014 18:16:35 -0300 Subject: [PATCH] fix search box for small devices --- public/css/common.css | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/public/css/common.css b/public/css/common.css index ef29557..5dadba2 100644 --- a/public/css/common.css +++ b/public/css/common.css @@ -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; } }