From dca1aa8aee6069de3e4d01116c9876606896ba66 Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Thu, 16 Dec 2021 02:32:33 +0000 Subject: [PATCH] static/tgal.css: Use flex layout for the thumbnail strip. Using flow layout respects the whitespace between the thumbnails, which leaves me with an annoying choice between strictly-correct rendering and moderately well-formatted source text. --- static/tgal.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/tgal.css b/static/tgal.css index dc95e2c..933b974 100644 --- a/static/tgal.css +++ b/static/tgal.css @@ -148,7 +148,7 @@ div.thumbstrip { width: 100%; overflow-x: auto; text-align: center; - white-space: nowrap; + display: flex; flex-direction: row; } /*----- That's all, folks -------------------------------------------------*/ -- 2.11.0