diff --git a/src/app/components/participant/content-choice-participant/content-choice-participant.component.html b/src/app/components/participant/content-choice-participant/content-choice-participant.component.html index a7f41bf36e27cb29b4f70b64d8c116d8dbe5eb12..bbe19ad9690da554b8be85350df08895dfdd4e64 100644 --- a/src/app/components/participant/content-choice-participant/content-choice-participant.component.html +++ b/src/app/components/participant/content-choice-participant/content-choice-participant.component.html @@ -18,7 +18,7 @@ </mat-list> </mat-radio-group> <mat-divider></mat-divider> - <div fxLayout fxLayoutGap="5px" fxAlign="row"> + <div fxLayoutAlign="center" fxLayoutGap="20px" fxAlign="row"> <button mat-raised-button [disabled]="alreadySent" type="submit" color="accent">{{ 'answer.submit' | translate }}</button> <button mat-raised-button [disabled]="alreadySent" (click)="abstain($event)" color="primary">{{ 'answer.abstain' | translate }}</button> </div> diff --git a/src/app/components/participant/content-text-participant/content-text-participant.component.html b/src/app/components/participant/content-text-participant/content-text-participant.component.html index 33f79b4cd3df91813ee2dac0b5b3f3b1290d8930..501cee9f7b800814bc796332579b6ba9e5d40ce5 100644 --- a/src/app/components/participant/content-text-participant/content-text-participant.component.html +++ b/src/app/components/participant/content-text-participant/content-text-participant.component.html @@ -4,7 +4,7 @@ <mat-form-field class="input-block"> <textarea matInput [(ngModel)]="textAnswer" name="answer" #answer placeholder="{{ 'answer.your-answer' | translate }}"></textarea> </mat-form-field> - <div fxLayout fxLayoutGap="5px" fxAlign="row"> + <div fxLayoutAlign="center" fxLayoutGap="20px" fxAlign="row"> <button mat-raised-button type="submit" color="accent">{{ 'answer.submit' | translate }}</button> <button mat-raised-button (click)="abstain($event)" color="primary">{{ 'answer.abstain' | translate }}</button> </div>