fix(common): hide horizontal scrollbar in Firefox for URL input (#5906)

Co-authored-by: nivedin <nivedinp@gmail.com>
This commit is contained in:
Hypo 2026-03-02 19:28:40 +08:00 committed by GitHub
parent 1119a2209c
commit 4594e838d4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -749,6 +749,11 @@ watch(
@apply flex-shrink-0;
@apply whitespace-nowrap py-4;
// Hide horizontal scrollbar for CodeMirror in Firefox (Chrome is handled by global ::-webkit-scrollbar { h-0 })
:deep(.cm-scroller) {
scrollbar-width: none;
}
.suggestions {
@apply absolute;
@apply bg-popover;