From 911d989b95bf62dae97d6d42ed566ec4a82e319f Mon Sep 17 00:00:00 2001 From: Cinder Date: Wed, 12 Feb 2025 10:54:01 -0800 Subject: [PATCH] [Posts] Fix a layering bug in fullscreen mode (#915) --- .../src/styles/views/posts/index/partials/_fullscreen.scss | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/javascript/src/styles/views/posts/index/partials/_fullscreen.scss b/app/javascript/src/styles/views/posts/index/partials/_fullscreen.scss index a8e68dd72..33dbd7926 100644 --- a/app/javascript/src/styles/views/posts/index/partials/_fullscreen.scss +++ b/app/javascript/src/styles/views/posts/index/partials/_fullscreen.scss @@ -16,6 +16,7 @@ flex-wrap: wrap; justify-content: right; + z-index: 11; // above posts and labels .post-search { width: 100%; } @@ -27,5 +28,6 @@ .sidebar { display: none; } .content { border-radius: 0 0 0.25rem 0.25rem; + .posts-index-stats { margin-right: 5rem; } } }