Fixes the search box overlapping with content when first shown (#666)

This commit is contained in:
Michael Bryan 2018-04-10 22:02:27 +08:00 committed by GitHub
parent 71d44933f0
commit 7f82a197b9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 0 deletions

View File

@ -1417,6 +1417,7 @@ mark.fade-out {
margin-left: auto; margin-left: auto;
margin-right: auto; margin-right: auto;
max-width: 750px; max-width: 750px;
display: block;
} }
#searchbar { #searchbar {
width: 100%; width: 100%;

View File

@ -21,6 +21,7 @@ mark.fade-out {
margin-left: auto; margin-left: auto;
margin-right: auto; margin-right: auto;
max-width: $content-max-width; max-width: $content-max-width;
display: block;
} }
#searchbar { #searchbar {
@ -64,3 +65,4 @@ ul#searchresults {
font-style: normal; font-style: normal;
} }
} }