forked from tykayn/funky-framadate-front
⚡ bottom nav width limited to main column width
This commit is contained in:
parent
2a48633e83
commit
483e497399
@ -1,24 +1,26 @@
|
|||||||
<div class="bottom-step-buttons" style="">
|
<div class="bottom-step-buttons">
|
||||||
<button
|
<div class="contained-in-main-column">
|
||||||
*ngIf="display_previous_button"
|
<button
|
||||||
class="button button-previous is-secondary pull-left"
|
*ngIf="display_previous_button"
|
||||||
[routerLink]="['/administration/step/' + previous_step_number]"
|
class="button button-previous is-secondary pull-left"
|
||||||
>
|
[routerLink]="['/administration/step/' + previous_step_number]"
|
||||||
Précédent
|
>
|
||||||
</button>
|
Précédent
|
||||||
|
</button>
|
||||||
|
|
||||||
<button
|
<button
|
||||||
*ngIf="display_next_button"
|
*ngIf="display_next_button"
|
||||||
class="button button-next pull-right"
|
class="button button-next pull-right"
|
||||||
[ngClass]="{ 'is-finish': is_finish_step, 'is-primary': !is_finish_step }"
|
[ngClass]="{ 'is-finish': is_finish_step, 'is-primary': !is_finish_step }"
|
||||||
[routerLink]="['/administration/step/' + next_step_number]"
|
[routerLink]="['/administration/step/' + next_step_number]"
|
||||||
(click)="runEndAction()"
|
(click)="runEndAction()"
|
||||||
>
|
>
|
||||||
<span *ngIf="is_finish_step">
|
<span *ngIf="is_finish_step">
|
||||||
Enregistrer
|
Enregistrer
|
||||||
</span>
|
</span>
|
||||||
<span *ngIf="!is_finish_step">
|
<span *ngIf="!is_finish_step">
|
||||||
Suivant
|
Suivant
|
||||||
</span>
|
</span>
|
||||||
</button>
|
</button>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -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;
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user