From de7b405e55e9ad95e5f624e6992fc72944189496 Mon Sep 17 00:00:00 2001 From: Echo Date: Thu, 8 Jan 2026 10:44:17 +0100 Subject: [PATCH] Video modals should not be pushed down on mobile (#37421) --- app/javascript/styles/mastodon/components.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/javascript/styles/mastodon/components.scss b/app/javascript/styles/mastodon/components.scss index 47f17f6e79..9546076403 100644 --- a/app/javascript/styles/mastodon/components.scss +++ b/app/javascript/styles/mastodon/components.scss @@ -6023,6 +6023,10 @@ a.status-card { @media screen and (width <= $mobile-breakpoint) { margin-top: auto; + + &.video-modal { + margin-top: 0; + } } }