fix: handle card grids in css instead of js

This commit is contained in:
Christel Westerberg
2025-01-08 15:57:18 +01:00
parent 96820ba89a
commit 678fea1e7d
7 changed files with 53 additions and 136 deletions
@@ -5,8 +5,8 @@
.roomList {
list-style: none;
display: grid;
grid-template-columns: 1fr;
gap: var(--Spacing-x3);
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}
.roomList > li {
@@ -18,7 +18,3 @@
position: fixed;
width: 0;
}
.roomList {
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}