From 9c2c4a9316edc64d9e9c957052c314dceb821f77 Mon Sep 17 00:00:00 2001 From: Emma Date: Sat, 2 Mar 2024 20:16:28 -0500 Subject: [PATCH] Wrap ft-icon buttons below before they go fully vertical (#4735) --- .../watch-video-info/watch-video-info.scss | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/renderer/components/watch-video-info/watch-video-info.scss b/src/renderer/components/watch-video-info/watch-video-info.scss index 343f11599..4ffea33c3 100644 --- a/src/renderer/components/watch-video-info/watch-video-info.scss +++ b/src/renderer/components/watch-video-info/watch-video-info.scss @@ -64,6 +64,19 @@ inset-inline-end: calc(50% - 20px); } } + + @media screen and (max-width: 460px) { + flex-wrap: nowrap; + :deep(.iconDropdown) { + inset-inline-start: auto; + inset-inline-end: auto; + } + } + } + @media screen and (max-width: 460px) { + flex-direction: column; + align-items: flex-start; + margin-block-start: 10px; } }