diff --git a/src/app/components/creator/content-choice-creator/content-choice-creator.component.html b/src/app/components/creator/content-choice-creator/content-choice-creator.component.html index 236216731a7d7ac9545b3039f07b15926ea9693f..1d90657e7a255d33db528e0e88576ae02754e6ba 100644 --- a/src/app/components/creator/content-choice-creator/content-choice-creator.component.html +++ b/src/app/components/creator/content-choice-creator/content-choice-creator.component.html @@ -50,8 +50,8 @@ <mat-icon class="addIcon">add_box</mat-icon> </button> </div> - <div fxLayout="row" fxLayoutAlign="center" fxLayoutGap="25px"> - <button mat-raised-button class="create" type="submit">{{ 'content.create' | translate }}</button> + <div fxLayout="row" fxLayoutAlign="center" fxLayoutGap="20px"> <button mat-raised-button class="reset" (click)="reset($event)">{{ 'content.reset' | translate }}</button> + <button mat-raised-button class="create" type="submit">{{ 'content.create' | translate }}</button> </div> </form> diff --git a/src/app/components/creator/content-likert-creator/content-likert-creator.component.html b/src/app/components/creator/content-likert-creator/content-likert-creator.component.html index feecd6014a4e081262bc1b1d7620f747210417cb..7caf6c9ddec6441384c4ae666502ce63e331f9ba 100644 --- a/src/app/components/creator/content-likert-creator/content-likert-creator.component.html +++ b/src/app/components/creator/content-likert-creator/content-likert-creator.component.html @@ -10,7 +10,7 @@ <mat-header-row *matHeaderRowDef="displayedColumns"></mat-header-row> <mat-row *matRowDef="let row; columns: displayedColumns;"></mat-row> </mat-table> - <div> + <div fxLayout="row" fxLayoutAlign="center"> <button mat-raised-button type="submit"class="submit">{{ 'content.create' | translate }}</button> </div> </form> diff --git a/src/app/components/creator/content-likert-creator/content-likert-creator.component.scss b/src/app/components/creator/content-likert-creator/content-likert-creator.component.scss index 4b6e92c0b8df802c07e7c0f5988113e281894fd1..051ec35e599f1025c913dbac28d5e56a8aabd1e9 100644 --- a/src/app/components/creator/content-likert-creator/content-likert-creator.component.scss +++ b/src/app/components/creator/content-likert-creator/content-likert-creator.component.scss @@ -11,6 +11,11 @@ mat-cell { } .submit { + margin-top: 80px; background-color: var(--primary); color: var(--on-primary); } + +.mat-raised-button { + min-width: 120px; +} diff --git a/src/app/components/creator/content-text-creator/content-text-creator.component.html b/src/app/components/creator/content-text-creator/content-text-creator.component.html index d9a776aea364e5547a90dccf135fbab779022769..2eae0303e27a9e8c160f6c3bedb40360a0123b80 100644 --- a/src/app/components/creator/content-text-creator/content-text-creator.component.html +++ b/src/app/components/creator/content-text-creator/content-text-creator.component.html @@ -1,5 +1,5 @@ <form (ngSubmit)="submitContent()"> - <div fxLayout="row" fxLayoutAlign="center" fxLayoutGap="5px"> + <div fxLayout="row" fxLayoutAlign="center"> <button mat-raised-button type="submit" class="submit">{{'content.create' | translate}}</button> </div> </form> diff --git a/src/app/components/creator/content-text-creator/content-text-creator.component.scss b/src/app/components/creator/content-text-creator/content-text-creator.component.scss index 3eb278fae9f3ee459aff8278e0a0df2bb128711d..bb06a964f1b1ee6e391892ea8af40c1ff7880c9d 100644 --- a/src/app/components/creator/content-text-creator/content-text-creator.component.scss +++ b/src/app/components/creator/content-text-creator/content-text-creator.component.scss @@ -3,6 +3,11 @@ form > button { } .submit { + margin-top: 180px; background-color: var(--primary); color: var(--on-primary); } + +.mat-raised-button { + min-width: 120px; +} diff --git a/src/app/components/creator/content-yes-no-creator/content-yes-no-creator.component.html b/src/app/components/creator/content-yes-no-creator/content-yes-no-creator.component.html index dd2647f880e0105e06eaa1463d44677e487973c0..cd1a5358556f8d94bd509f1b1418abe1bfeb81fa 100644 --- a/src/app/components/creator/content-yes-no-creator/content-yes-no-creator.component.html +++ b/src/app/components/creator/content-yes-no-creator/content-yes-no-creator.component.html @@ -7,7 +7,7 @@ {{ 'content.no' | translate }} </mat-radio-button> </mat-radio-group> - <div> + <div fxLayout="row" fxLayoutAlign="center" fxLayoutGap="25px"> <button mat-raised-button type="submit" class="submit">{{ 'content.create' | translate }}</button> </div> </form> diff --git a/src/app/components/creator/content-yes-no-creator/content-yes-no-creator.component.scss b/src/app/components/creator/content-yes-no-creator/content-yes-no-creator.component.scss index 3eb278fae9f3ee459aff8278e0a0df2bb128711d..0047e966a4654204184c48c75cd3611bdf3fc440 100644 --- a/src/app/components/creator/content-yes-no-creator/content-yes-no-creator.component.scss +++ b/src/app/components/creator/content-yes-no-creator/content-yes-no-creator.component.scss @@ -5,4 +5,9 @@ form > button { .submit { background-color: var(--primary); color: var(--on-primary); + margin-top: 160px; +} + +.mat-raised-button { + min-width: 120px; }