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 193aa3981e94b0eb32140a25b27346ba70272ea5..935ee0f0f63bac1da29fe6001c600b752e963c0b 100644
--- a/src/app/components/shared/room-list/room-list.component.scss
+++ b/src/app/components/shared/room-list/room-list.component.scss
@@ -98,9 +98,5 @@ th, tr {
 }
 
 .list-entries {
-  padding-left: 3%;
   width: 100%;
-  &:nth-child(even) {
-    background-color: var(--alt-dialog);
-  }
 }
diff --git a/src/styles.scss b/src/styles.scss
index c4b239d10e97488656fe9d98a46d23826777bf21..10f3366f0ca9a132faea6de03c352bf9671a44c7 100644
--- a/src/styles.scss
+++ b/src/styles.scss
@@ -225,3 +225,7 @@ a {
 .mat-icon-button i, .mat-icon-button .mat-icon {
   line-height: normal !important;
 }
+
+.mat-row:nth-child(even) {
+  background-color: var(--alt-dialog) !important;
+}