From bc19d5a5d345711a23fbb3e25f6bed1ca1b692e5 Mon Sep 17 00:00:00 2001
From: Thomas Lenz <Thomas.Lenz@mni.thm.de>
Date: Thu, 15 Mar 2018 12:58:17 +0100
Subject: [PATCH] Set checkbox before label and points of answer

---
 .../creator-choice-content.component.html                     | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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 41b0944c3..a70105b0a 100644
--- a/src/app/creator-choice-content/creator-choice-content.component.html
+++ b/src/app/creator-choice-content/creator-choice-content.component.html
@@ -15,10 +15,10 @@
       <mat-card-content>
         <mat-list *ngFor="let answer of options; let i = index" [attr.data-index]="i">
           <!-- <mat-checkbox color="primary">{{answer.label}}</mat-checkbox> -->
-          <div fxLayout="row">
+          <div fxLayout="row" fxLayoutGap="20px">
+            <mat-checkbox color="primary" value="checked"></mat-checkbox>
             <input matInput placeholder="Label" value="{{answer.label}}">
             <input matInput placeholder="Points" value="{{answer.points}}">
-            <mat-checkbox color="primary" value="checked"></mat-checkbox>
           </div>
         </mat-list>
         <mat-divider class="underListDivider"></mat-divider>
-- 
GitLab