diff --git a/src/app/room-list/room-list.component.html b/src/app/room-list/room-list.component.html
index 28a577a9dd214a14e16e897d6ca291441e0c8e29..85bc427ba6df5c9abf107b36976f4c2dbb54327b 100644
--- a/src/app/room-list/room-list.component.html
+++ b/src/app/room-list/room-list.component.html
@@ -1,6 +1,7 @@
 <mat-accordion>
   <mat-expansion-panel *ngFor="let room of rooms">
     <mat-expansion-panel-header>
+      <button mat-button color="primary" routerLink="/{{ baseUrl }}/room/{{ room.id }}">Join</button>
       <mat-panel-title>
         {{ room.shortId }}
       </mat-panel-title>
@@ -11,8 +12,5 @@
     <p>
       {{ room.description }}
     </p>
-    <mat-action-row>
-      <button mat-button routerLink="/{{ baseUrl }}/room/{{ room.id }}">Join room</button>
-    </mat-action-row>
   </mat-expansion-panel>
 </mat-accordion>