fix(web-ui): hide search wrapper (with dropdown) on narrow screens
Previously the responsive rule hid only .search, leaving the dropdown positioned on its own wrapper. Target .search-wrap so input + results both hide together.
This commit is contained in:
parent
899876c6cf
commit
630dc75787
1 changed files with 1 additions and 1 deletions
|
|
@ -40,7 +40,7 @@
|
||||||
.topbar .spacer { flex: 1; min-width: 8px; }
|
.topbar .spacer { flex: 1; min-width: 8px; }
|
||||||
|
|
||||||
@media (max-width: 1100px) {
|
@media (max-width: 1100px) {
|
||||||
.topbar .search { display: none; }
|
.topbar .search-wrap { display: none; }
|
||||||
}
|
}
|
||||||
@media (max-width: 900px) {
|
@media (max-width: 900px) {
|
||||||
.topbar .status-pip span:not(.dot) { display: none; }
|
.topbar .status-pip span:not(.dot) { display: none; }
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue