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 b1e787a3afc9e6839abccaaf4aa47d22b74dfc30..d5220fee0afede4dbf99bae87ba82af4e7836e62 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 @@ -1,4 +1,4 @@ -<form (ngSubmit)="submitContent()"> +<form (ngSubmit)="submitContent()" fxLayout="column" fxLayoutGap="20px"> <mat-divider></mat-divider> <mat-table #table [dataSource]="displayAnswers"> <ng-container matColumnDef="label"> 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 687e7d96c8ae5f81676b91d911abedb0790ac2f9..3d0e678f5ec7ef58ad3ce0c18847c8e32c158072 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 @@ -1,3 +1,11 @@ form > button { margin: 20px 0; } + +mat-header-cell { + background-color: #ffe0b2; +} + +mat-cell { + background-color: #ffecb3; +}