fix(editor): apply dark scrollbar styling to rich markdown editor

The scroll container in RichMarkdownEditor was missing the
scrollbar-editor class, causing the browser default white scrollbar
to appear against the dark editor background.
This commit is contained in:
Jinwoo-H 2026-04-21 01:56:08 -04:00
parent 55e935ff32
commit 6ea0591544

View file

@ -505,7 +505,7 @@ export default function RichMarkdownEditor({
query={searchQuery}
searchInputRef={searchInputRef}
/>
<div ref={scrollContainerRef} className="min-h-0 flex-1 overflow-auto">
<div ref={scrollContainerRef} className="min-h-0 flex-1 overflow-auto scrollbar-editor">
<EditorContent editor={editor} />
</div>
{linkBubble ? (