Make step content scrollable overflow adjust results step

- Results step is now the last step but doesn't restrict the user from going back
This commit is contained in:
Dana Lambert 2021-11-02 11:11:55 +13:00
parent 039d8d14ec
commit 8638fd3041
4 changed files with 57 additions and 58 deletions

View file

@ -1,10 +1,17 @@
.step-container {
flex-grow: 1;
overflow: auto;
}
.step-overlay {
background-color: #191919c2;
height: 100%;
min-height: 100%;
padding-left: 3vw;
padding-right: 3vw;
display: flex;
flex-direction: column;
}
.step-overlay .row {
flex-grow: 1;
}