bottom nav width limited to main column width

This commit is contained in:
Tykayn 2021-12-10 10:47:18 +01:00 committed by tykayn
parent 2a48633e83
commit 483e497399
2 changed files with 32 additions and 22 deletions

View File

@ -1,4 +1,5 @@
<div class="bottom-step-buttons" style=""> <div class="bottom-step-buttons">
<div class="contained-in-main-column">
<button <button
*ngIf="display_previous_button" *ngIf="display_previous_button"
class="button button-previous is-secondary pull-left" class="button button-previous is-secondary pull-left"
@ -22,3 +23,4 @@
</span> </span>
</button> </button>
</div> </div>
</div>

View File

@ -66,6 +66,7 @@ main {
&.is-fullwidth { &.is-fullwidth {
width: 100% !important; width: 100% !important;
padding-right: 0 !important; padding-right: 0 !important;
.button:nth-of-type(1) { .button:nth-of-type(1) {
width: 50%; width: 50%;
float: right; float: right;
@ -80,3 +81,10 @@ main {
} }
} }
} }
.contained-in-main-column {
max-width: $main-column-width;
margin: 0 auto;
width: 100%;
display: block;
}