From a3d7880c457522e304c102a14ffb2aaae632adbe Mon Sep 17 00:00:00 2001 From: Arnei Date: Tue, 7 Nov 2023 12:01:09 +0100 Subject: [PATCH] Thumbnail: Allow timeline to stretch fully The timeline in the thumbnail view did not stretch to the full width of the available screenspace in some cases (e.g. when there is only one video). This fixes that. --- src/main/Thumbnail.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/Thumbnail.tsx b/src/main/Thumbnail.tsx index 77e4bf13c..5dbc44ca9 100644 --- a/src/main/Thumbnail.tsx +++ b/src/main/Thumbnail.tsx @@ -91,6 +91,7 @@ const Thumbnail : React.FC = () => { const bottomStyle = css({ display: 'flex', + width: '100%', flexDirection: 'column', alignItems: 'center', })