Skip to content

Commit

Permalink
[PAY-1717] Make sign in/sign up page overlap banner (#3886)
Browse files Browse the repository at this point in the history
  • Loading branch information
rickyrombo committed Aug 15, 2023
1 parent c10b8fc commit b0156e2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ const BackgroundWaves = (props) => {
ref={canvasRef}
className={cn({ [props.className]: !!props.className })}
style={{
position: 'absolute',
position: 'fixed',
top: 0,
left: 0,
background:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,12 @@
max-width: 1250px !important;
}

:global(#mainContent) > .pageContainer {
position: fixed;
bottom: 0;
overflow-y: auto;
}

.pageContainer {
min-height: 100vh;
display: flex;
Expand Down

0 comments on commit b0156e2

Please sign in to comment.