diff --git a/src/app/creator-choice-content/creator-choice-content.component.html b/src/app/creator-choice-content/creator-choice-content.component.html
index 4bd29154f4845732a8b6d5ed6393cf3b047406eb..c3bc9ee62fd7dc213e18e65b269b8c93f3f09072 100644
--- a/src/app/creator-choice-content/creator-choice-content.component.html
+++ b/src/app/creator-choice-content/creator-choice-content.component.html
@@ -27,9 +27,9 @@
 
   <mat-divider></mat-divider>
 
-  <div fxLayout="row" fxLayoutGap="5px">
+  <div fxLayout="row" fxLayoutGap="15px">
     <div fxLayout="column" fxLayoutAlign="center">
-      <mat-checkbox #answerIsCorrect color="primary"></mat-checkbox>
+      <mat-checkbox #answerIsCorrect color="primary">Is correct</mat-checkbox>
     </div>
     <mat-form-field>
       <input matInput #answerLabel placeholder="Answer" name="answer">
@@ -45,5 +45,5 @@
     </div>
   </div>
 
-  <button mat-button type="submit">Submit</button>
+  <button mat-raised-button type="submit" color="primary">Submit</button>
 </form>
diff --git a/src/app/creator-text-content/creator-text-content.component.html b/src/app/creator-text-content/creator-text-content.component.html
index 02bc441a075263105597edc30de60ed6efdb267d..bc01fb669cf4b0ece06885f21bc6977cc4e399d6 100644
--- a/src/app/creator-text-content/creator-text-content.component.html
+++ b/src/app/creator-text-content/creator-text-content.component.html
@@ -5,5 +5,5 @@
   <mat-form-field>
     <textarea matInput #body [(ngModel)]="content.body" placeholder="Body" name="body"></textarea>
   </mat-form-field>
-  <button mat-button type="submit">Submit</button>
+  <button mat-raised-button type="submit" color="primary">Submit</button>
 </form>
diff --git a/src/app/participant-choice-content/participant-choice-content.component.html b/src/app/participant-choice-content/participant-choice-content.component.html
index 0ba5c179e17deb51c42af06209eda42d132c7fc2..295ef1677c000df77920fe4efbce34c1301661c7 100644
--- a/src/app/participant-choice-content/participant-choice-content.component.html
+++ b/src/app/participant-choice-content/participant-choice-content.component.html
@@ -7,5 +7,5 @@
       <mat-checkbox color="primary">{{ answer.label }}</mat-checkbox>
     </mat-list-item>
   </mat-list>
-  <button mat-button>Send answer</button>
+  <button mat-raised-button color="primary">Send answer</button>
 </form>
diff --git a/src/app/participant-text-content/participant-text-content.component.html b/src/app/participant-text-content/participant-text-content.component.html
index 19899bf42746a5b1ec6342da438e2952374cbdc3..9524322952f83f5a03f0ccab20fcac4702a5d1c0 100644
--- a/src/app/participant-text-content/participant-text-content.component.html
+++ b/src/app/participant-text-content/participant-text-content.component.html
@@ -5,5 +5,5 @@
   <mat-form-field>
     <textarea matInput #answer placeholder="Your answer"></textarea>
   </mat-form-field>
-  <button mat-button type="submit">Submit</button>
+  <button mat-raised-button type="submit" color="primary">Submit</button>
 </form>
diff --git a/src/app/participant-text-content/participant-text-content.component.scss b/src/app/participant-text-content/participant-text-content.component.scss
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..9ee20adf8bfa62fd7d1268bc17f9fb4bb98f79a4 100644
--- a/src/app/participant-text-content/participant-text-content.component.scss
+++ b/src/app/participant-text-content/participant-text-content.component.scss
@@ -0,0 +1,3 @@
+mat-form-field {
+  display: block;
+}