mirror of
https://github.com/MarekWo/mc-webui.git
synced 2026-05-02 03:22:40 +02:00
fix: drop input min-width override that pinned channel selector to 100px
The responsive @media (<768px) block had #channelSelectorInput pinned at min-width: 100px !important, which pushed the wrapper's actual width above the wrapper's own min-width: 80px. Remove the input min-width so the wrapper's 80px takes effect; DM contact input keeps its 100px. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
@@ -558,7 +558,13 @@ main {
|
||||
}
|
||||
|
||||
/* Navbar: Channel selector on mobile */
|
||||
#channelSelectorInput,
|
||||
#channelSelectorInput {
|
||||
min-width: 0 !important;
|
||||
width: 100%;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
/* DM: Contact search input on mobile */
|
||||
#dmContactSearchInput {
|
||||
min-width: 100px !important;
|
||||
font-size: 0.9rem;
|
||||
|
||||
Reference in New Issue
Block a user