Skip to content

Commit

Permalink
Bugfix [#11]: fix search input width on very small screen
Browse files Browse the repository at this point in the history
  • Loading branch information
Mihkel Oviir committed Jan 15, 2016
1 parent a812021 commit 3d072a0
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion www/src/css/app/search.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#toolbar .search {
width: 200px
width: 146px
}
#toolbar .search .dropdown-header {
font-weight: bold;
Expand All @@ -20,6 +20,12 @@
white-space: normal;
}

@media screen and (min-width: 360px){
#toolbar .search {
width: 200px
}
}

@media screen and (min-width: 460px){
#toolbar .search {
width: 240px
Expand Down

0 comments on commit 3d072a0

Please sign in to comment.