From 4ffdb541137859839f1485b649324f91dafb10b5 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Lukas=20Mau=C3=9F?= <lukas.mauss@mni.thm.de>
Date: Thu, 8 Mar 2018 20:35:59 +0100
Subject: [PATCH] Fix participant-room layout (horizontal center)

---
 src/app/participant-room/participant-room.component.html | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/src/app/participant-room/participant-room.component.html b/src/app/participant-room/participant-room.component.html
index 9fa2814f0..3eb6bc5a5 100644
--- a/src/app/participant-room/participant-room.component.html
+++ b/src/app/participant-room/participant-room.component.html
@@ -1,5 +1,7 @@
 <div fxLayout="column" fxLayoutAlign="center" fxLayoutGap="20px" fxFill>
-  <mat-list fxLayout="column" fxLayoutGap="10px" fxLayoutAlign="center">
+  <div fxLayout="row" fxLayoutAlign="center">
+    <div fxLayoutGap="20px">
+    <mat-list fxLayout="column" fxLayoutGap="10px" fxLayoutAlign="center">
     <mat-list-item>Room: {{roomId}}</mat-list-item>
     <mat-list-item>
       <button mat-fab color="primary" routerLink="/room/{{roomId}}/create-comment">
@@ -16,4 +18,6 @@
       <button mat-raised-button color="primary">Comments</button>
     </mat-list-item>
   </mat-list>
+      </div>
+    </div>
 </div>
-- 
GitLab