Merge pull request #15143 from brave/fix-onboarding-double-scrollbar

fix(wallet): Onboarding Double Scrollbars
This commit is contained in:
Douglas Daniel
2022-09-21 08:12:49 -06:00
committed by GitHub
2 changed files with 2 additions and 2 deletions
@@ -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')`
@@ -13,7 +13,7 @@
<style>
html {
/* Prevent layout shift when a vertical scrollbar is added */
overflow-y: scroll;
overflow-y: auto;
}
#root {