mirror of
https://github.com/stablyai/orca
synced 2026-04-21 14:17:16 +00:00
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:
parent
55e935ff32
commit
6ea0591544
1 changed files with 1 additions and 1 deletions
|
|
@ -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 ? (
|
||||
|
|
|
|||
Loading…
Reference in a new issue