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:
MarekWo
2026-04-22 19:44:48 +02:00
parent b296913cd1
commit 9ca055dd01

View File

@@ -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;