Skip to content
Merged
Changes from all commits
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
4 changes: 2 additions & 2 deletions packages/modal/src/ui/css/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
}

.w3a-parent-container > * {
scrollbar-color: #e5e7eb !important;
scrollbar-width: thin;
scrollbar-color: #e5e7eb transparent !important;
}

.w3a-modal-container {
Expand All @@ -33,7 +34,6 @@
}

.w3a--social-container {
scrollbar-color: #e5e7eb !important;

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nested scrollbars lose styling

Medium Severity

The commit drops scrollbar-color (and does not add scrollbar-width) on .w3a--social-container, while scroll styling now lives only on .w3a-parent-container > *. The social login and wallet lists that use overflow-y-auto are nested descendants, not direct children, and scrollbar-color is not inherited, so those scrollbars can still fall back to the browser default.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit d0e65b9. Configure here.

scroll-padding-right: 10px;
}

Expand Down