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:
parent
63c332ea52
commit
da8a6f0505
1 changed files with 3 additions and 2 deletions
|
@ -20,8 +20,9 @@
|
||||||
|
|
||||||
#channel_list
|
#channel_list
|
||||||
{
|
{
|
||||||
display: grid;
|
display: flex;
|
||||||
grid-row-gap: 8px;
|
flex-direction: column;
|
||||||
|
row-gap: 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.channel_card
|
.channel_card
|
||||||
|
|
Loading…
Reference in a new issue