diff --git a/src/app/participant-room/participant-room.component.html b/src/app/participant-room/participant-room.component.html
index 9fa2814f01b3f0ce3922f2bd683c71d76cd15eea..3eb6bc5a52d4a20073408aa4bcdf6fbc86625c06 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>