diff --git a/src/app/components/shared/header/header.component.html b/src/app/components/shared/header/header.component.html
index 2113f109c65618ac544fa7bf7ec3ff0cf29db1a9..57fbdde0d46adfd10a0bba04085d770fb5139acf 100644
--- a/src/app/components/shared/header/header.component.html
+++ b/src/app/components/shared/header/header.component.html
@@ -15,7 +15,7 @@
     </h2>
     <span class="fill-remaining-space"
           *ngIf="router.url.includes('comments') && deviceType === 'desktop'"></span>
-    <button *ngIf="(router.url.includes('comments') && !router.url.includes('moderator')) && deviceType === 'desktop'"
+    <button *ngIf="router.url.includes('comments') && deviceType === 'desktop'"
             mat-raised-button class="question-focus-btn" routerLink="participant/room/{{shortId}}/comments/questionwall">
       <mat-icon svgIcon="beamer" class="header-icons beamer-icon"></mat-icon>
       <span class="question-focus-btn-txt">{{'header.question-wall' | translate}}</span>
diff --git a/src/app/components/shared/room-list/room-list.component.html b/src/app/components/shared/room-list/room-list.component.html
index 830f21bcbd7e7778c05a56ec3d2ac0a4f9c2bf88..c28e393f90eaedd55020444b03baf33ab8576f7a 100644
--- a/src/app/components/shared/room-list/room-list.component.html
+++ b/src/app/components/shared/room-list/room-list.component.html
@@ -32,7 +32,7 @@
           </th>
           <td mat-cell class="clickable" *matCellDef="let room" (click)="setCurrentRoom(room.shortId)"
               routerLink="/{{ roleToString((room.role)) }}/room/{{ room.shortId }}">
-            <span matBadge="{{room.commentCount > 0 && deviceType === 'desktop' ? room.commentCount : null}}" matBadgeOverlap="false">
+            <span matBadge="{{room.commentCount > 0 ? room.commentCount : null}}" matBadgeOverlap="false">
               &raquo;{{room.name}}&laquo;
             </span>
           </td>
diff --git a/src/app/components/shared/room-list/room-list.component.scss b/src/app/components/shared/room-list/room-list.component.scss
index 0f497e28573fddf665e889cfdd18e02cf365f0b6..bae01932da26a57b52c926f6ee4e55b7a23b6a88 100644
--- a/src/app/components/shared/room-list/room-list.component.scss
+++ b/src/app/components/shared/room-list/room-list.component.scss
@@ -17,8 +17,8 @@ table, th, tr, td {
   overflow-wrap: break-word;
 }
 
-th {
-  font-size: small;
+th, tr {
+  font-size: small !important;
 }
 
 .tableOverflow {
diff --git a/src/styles.scss b/src/styles.scss
index d9e0cbf71f9e2fd542756c3b5f1851f9a59d7180..2cb5007b36c2b502a68bd3b3a31d6c96ca8b9456 100644
--- a/src/styles.scss
+++ b/src/styles.scss
@@ -171,3 +171,7 @@ a.info:hover span, a.info:focus span, a.info:active span {
 a {
   word-break: break-all;
 }
+
+.mat-row {
+  height: 60px !important;
+}