Skip to content

Commit a00cdff

Browse files
Your Nameclaude
andcommitted
fix(popover-inline): prevent scrollbars from appearing in Safari
The base popover's `.ce-popover__items` has `overflow-y: auto`, which causes Safari to render visible scrollbars on the inline toolbar. Since the inline popover container uses `width: max-content` and grows to fit its content, scrolling is not needed. Override `overflow-y` to `visible` in the inline popover items to prevent Safari from showing scrollbars. Fixes #2988 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent a89f3d0 commit a00cdff

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

src/styles/popover-inline.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414

1515
.ce-popover__items {
1616
display: flex;
17+
overflow-y: visible;
1718
}
1819

1920
.ce-popover__container {

0 commit comments

Comments
 (0)