Use flex instead of grid to overcome 1,000 row browser limit.

Chrome stops adding grid rows after 1,000 and just piles them all
up on the bottom.
This commit is contained in:
voussoir 2021-11-08 02:01:01 -08:00
parent 63c332ea52
commit da8a6f0505
No known key found for this signature in database
GPG key ID: 5F7554F8C26DACCB

View file

@ -20,8 +20,9 @@
#channel_list
{
display: grid;
grid-row-gap: 8px;
display: flex;
flex-direction: column;
row-gap: 8px;
}
.channel_card