Skip to content

Commit

Permalink
[PAY-2281] Fix mobile web purchase modal footer placement (#7059)
Browse files Browse the repository at this point in the history
  • Loading branch information
raymondjacobson authored Jan 3, 2024
1 parent 733f140 commit 6e69ecf
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
.transitionContainer {
position: relative;
height: 100%;
flex-grow: 1;
}

.transitionContainer > * {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
width: 720px;
}

.modalRoot.mobile {
height: 100%;
}

.modalHeader.mobile {
margin: 0;
padding: 0;
Expand Down Expand Up @@ -33,5 +37,6 @@
}

.mobileWrapper {
height: 100%;
padding: 0px 0px;
}
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ const RenderForm = ({
const mobile = isMobile()

return (
<ModalForm>
<ModalForm className={cn(styles.modalRoot, { [styles.mobile]: mobile })}>
<ModalHeader
className={cn(styles.modalHeader, { [styles.mobile]: mobile })}
onClose={onClose}
Expand Down

0 comments on commit 6e69ecf

Please sign in to comment.