mirror of
https://github.com/facebook/docusaurus.git
synced 2025-05-31 09:57:03 +02:00
Fix search bar width for mobile nav (#575)
* Shorten search bar width for mobile nav * Remove min-device-width * Use max-width
This commit is contained in:
parent
159b80df94
commit
ba024a25c7
1 changed files with 2 additions and 2 deletions
|
@ -709,9 +709,9 @@ input#search_input_react:focus, input#search_input_react:active {
|
|||
color: #fff;
|
||||
width: 220px;
|
||||
}
|
||||
@media only screen and (min-device-width: 360px) and (max-device-width: 735px) {
|
||||
@media only screen and (max-width: 735px) {
|
||||
.navSearchWrapper {
|
||||
width: 50%;
|
||||
width: 40%;
|
||||
}
|
||||
}
|
||||
input::-webkit-input-placeholder {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue