fix(common): hide horizontal scrollbar in Firefox for URL input (#5906)
Co-authored-by: nivedin <nivedinp@gmail.com>
This commit is contained in:
parent
1119a2209c
commit
4594e838d4
1 changed files with 5 additions and 0 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue