Fix call list alignment

This commit is contained in:
Robert Long
2022-01-05 16:12:58 -08:00
parent eb4207e41d
commit 71986f6001

View File

@@ -22,8 +22,12 @@ export function CallList({ rooms, client }) {
participants={participants} participants={participants}
/> />
))} ))}
<div className={styles.callTileSpacer} /> {rooms.length > 3 && (
<div className={styles.callTileSpacer} /> <>
<div className={styles.callTileSpacer} />
<div className={styles.callTileSpacer} />
</>
)}
</div> </div>
</> </>
); );