Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion dialog/internal/_dialog.scss
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@
// space from appearing on platforms that reserve scrollbar space.
// Note: we only scroll vertically. Horizontal scrolling should be handled
// by the content.
overflow-y: scroll;
overflow-y: auto;
}

.content {
Expand All @@ -185,6 +185,7 @@
font-weight: map.get($tokens, 'supporting-text-weight');
height: min-content; // Needed for Safari
position: relative;
overflow-y: clip; // Needed for .scrollable .scroller
}

slot[name='content']::slotted(*) {
Expand Down