Skip to content

Commit eb747cf

Browse files
authored
[PAY-1717] Make sign in/sign up page overlap banner (#3886)
1 parent 2887342 commit eb747cf

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

packages/web/src/components/background-animations/BackgroundWaves.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ const BackgroundWaves = (props) => {
104104
ref={canvasRef}
105105
className={cn({ [props.className]: !!props.className })}
106106
style={{
107-
position: 'absolute',
107+
position: 'fixed',
108108
top: 0,
109109
left: 0,
110110
background:

packages/web/src/pages/sign-on/components/desktop/SignOn.module.css

+6
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,12 @@
4343
max-width: 1250px !important;
4444
}
4545

46+
:global(#mainContent) > .pageContainer {
47+
position: fixed;
48+
bottom: 0;
49+
overflow-y: auto;
50+
}
51+
4652
.pageContainer {
4753
min-height: 100vh;
4854
display: flex;

0 commit comments

Comments
 (0)