From da8a6f0505ca49757efa64d7073df754f1cff78f Mon Sep 17 00:00:00 2001 From: Ethan Dalool Date: Mon, 8 Nov 2021 02:01:01 -0800 Subject: [PATCH] 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. --- frontends/ycdl_flask/templates/channels.html | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/frontends/ycdl_flask/templates/channels.html b/frontends/ycdl_flask/templates/channels.html index 220082a..5d7b28c 100644 --- a/frontends/ycdl_flask/templates/channels.html +++ b/frontends/ycdl_flask/templates/channels.html @@ -20,8 +20,9 @@ #channel_list { - display: grid; - grid-row-gap: 8px; + display: flex; + flex-direction: column; + row-gap: 8px; } .channel_card