diff --git a/src/app/components/creator/room-creator-page/room-creator-page.component.html b/src/app/components/creator/room-creator-page/room-creator-page.component.html
index 5faa92d3cef593cee5211b2287d4f932d3d601d7..2f4a3ffbf1299c8444d8526d8b7466ab3f204000 100644
--- a/src/app/components/creator/room-creator-page/room-creator-page.component.html
+++ b/src/app/components/creator/room-creator-page/room-creator-page.component.html
@@ -42,18 +42,18 @@
           {{ room.description.trim() }}
         </h4>
       </mat-card-content>
-      <mat-grid-list cols="{{viewModuleCount}}" rowHeight="2:1">
+      <mat-grid-list cols="{{viewModuleCount}}" rowHeight="1:1">
         <mat-grid-tile>
           <button mat-icon-button
                   routerLink="/creator/room/{{ room.shortId }}/comments">
-            <mat-icon matBadge="{{commentCounter}}" matBadgeColor="primary" class="main-icon"
+            <mat-icon matBadge="{{commentCounter}}" class="main-icon"
                       [ngClass]="{'desktop' : deviceType === 'desktop'}">question_answer</mat-icon>
             <h3>{{ 'room-page.comments' | translate}}</h3> <!-- *ngIf="deviceType === 'desktop'" -->
           </button>
         </mat-grid-tile>
         <mat-grid-tile *ngIf="moderationEnabled">
           <button mat-icon-button routerLink="/moderator/room/{{ room.shortId }}/moderator/comments">
-            <mat-icon matBadge="{{moderatorCommentCounter}}" matBadgeColor="primary"
+            <mat-icon matBadge="{{moderatorCommentCounter}}" class="main-icon"
                       [ngClass]="{'desktop' : deviceType === 'desktop'}">gavel
             </mat-icon>
             <h3>{{ 'room-page.moderating-stream' | translate}}</h3>         <!-- *ngIf="deviceType === 'desktop'" -->
diff --git a/src/app/components/moderator/room-moderator-page/room-moderator-page.component.html b/src/app/components/moderator/room-moderator-page/room-moderator-page.component.html
index a08b44fcacd107d42c290d003503552c51366a0c..f0e63e789d5fd95f0c740ecbaba6a95fee17474b 100644
--- a/src/app/components/moderator/room-moderator-page/room-moderator-page.component.html
+++ b/src/app/components/moderator/room-moderator-page/room-moderator-page.component.html
@@ -20,10 +20,10 @@
         <mat-card-content *ngIf="room.description" fxLayoutAlign="center">
           <h4>{{room.description.trim()}}</h4>
         </mat-card-content>
-        <mat-grid-list cols="{{viewModuleCount}}" rowHeight="2:1">
+        <mat-grid-list cols="{{viewModuleCount}}" rowHeight="1:1">
             <mat-grid-tile>
               <button mat-icon-button routerLink="/moderator/room/{{ room.shortId }}/comments">
-                <mat-icon matBadge="{{commentCounter}}" matBadgeColor="primary"
+                <mat-icon matBadge="{{commentCounter}}" class="main-icon"
                           [ngClass]="{'desktop' : deviceType === 'desktop'}">question_answer
                 </mat-icon>
                 <h3>{{ 'room-page.public-stream' | translate}}</h3>         <!-- *ngIf="deviceType === 'desktop'" -->
@@ -31,7 +31,7 @@
             </mat-grid-tile>
             <mat-grid-tile *ngIf="moderationEnabled">
               <button mat-icon-button routerLink="/moderator/room/{{ room.shortId }}/moderator/comments">
-                <mat-icon matBadge="{{moderatorCommentCounter}}" matBadgeColor="primary"
+                <mat-icon matBadge="{{moderatorCommentCounter}}" class="main-icon"
                           [ngClass]="{'desktop' : deviceType === 'desktop'}">gavel
                 </mat-icon>
                 <h3>{{ 'room-page.moderating-stream' | translate}}</h3>         <!-- *ngIf="deviceType === 'desktop'" -->
@@ -50,4 +50,3 @@
   
     </div>
   </div>
-  
\ No newline at end of file
diff --git a/src/app/components/moderator/room-moderator-page/room-moderator-page.component.scss b/src/app/components/moderator/room-moderator-page/room-moderator-page.component.scss
index c321c4e16b764a0f8c23ce7d89af1813faaee408..c6d07eff122854ea93ff1378ce87ad3cdd5f9575 100644
--- a/src/app/components/moderator/room-moderator-page/room-moderator-page.component.scss
+++ b/src/app/components/moderator/room-moderator-page/room-moderator-page.component.scss
@@ -18,12 +18,12 @@ mat-card-content>:first-child {
   color: var(--primary)!important;
 }
 
-/*mat-icon {
-  font-size: 60px;
-  height: 60px;
-  width: 60px;
+.main-icon {
+  font-size: 80px;
+  height: 80px;
+  width: 80px;
   line-height: 100%!important;
-}*/
+}
 
 mat-icon {
   font-size: 80px;
@@ -92,14 +92,3 @@ mat-grid-tile {
   height: 100%!important;
   padding: 2%!important;
 }
-
-#settings {
-  width: 10%;
-  max-width: 40px;
-}
-
-#settings-icon {
-  font-size: 35px;
-  height: 35px;
-  width: 35px;
-}