Skip to content

Commit

Permalink
Merge pull request #15156 from brave/pr15143_fix-onboarding-double-sc…
Browse files Browse the repository at this point in the history
…rollbar_1.45.x

fix(wallet): Onboarding Double Scrollbars (uplift to 1.45.x)
  • Loading branch information
kjozwiak authored Sep 21, 2022
2 parents e622482 + 8c43878 commit dc626f4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const StyledWrapper = styled('div')`
align-items: flex-start;
justify-content: center;
background-color: ${(p) => p.theme.color.background01};
overflow-y: scroll;
overflow-y: auto;
`

export const StyledContent = styled('div')`
Expand Down
2 changes: 1 addition & 1 deletion components/brave_wallet_ui/page/wallet_page.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<style>
html {
/* Prevent layout shift when a vertical scrollbar is added */
overflow-y: scroll;
overflow-y: auto;
}

#root {
Expand Down

0 comments on commit dc626f4

Please sign in to comment.