sometimes scroll bar style not working - #2528
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, have a team admin enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit d0e65b9. Configure here.
| } | ||
|
|
||
| .w3a--social-container { | ||
| scrollbar-color: #e5e7eb !important; |
There was a problem hiding this comment.
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.
Reviewed by Cursor Bugbot for commit d0e65b9. Configure here.


Jira Link
Description
Fixes the modal scrollbar styling that intermittently failed to apply. The
scrollbar-colordeclaration was missing a track color andscrollbar-width, so browsers would fall back to the default scrollbar appearance in some cases.How has this been tested?
Screenshots (if appropriate)
Before
scroll-style-before.mov
After
scroll-style-after.mov
Types of changes
Checklist
Note
Low Risk
CSS-only presentation tweak in the modal package with no auth, data, or API impact.
Overview
Fixes intermittent default scrollbars in the Web3Auth modal by tightening Firefox-oriented scrollbar styling on
.w3a-parent-container > *.Those descendants now use
scrollbar-width: thinandscrollbar-color: #e5e7eb transparent(thumb plus transparent track) instead of a thumb-only color. The duplicatescrollbar-coloron.w3a--social-containeris removed so styling is centralized on the parent rule.Reviewed by Cursor Bugbot for commit d0e65b9. Bugbot is set up for automated code reviews on this repo. Configure here.