From d8714facb605e1ec8fc5f2021b2551a0fce51e18 Mon Sep 17 00:00:00 2001 From: Kris Date: Mon, 18 Jul 2022 20:43:05 -0400 Subject: [PATCH] FIX: can't hide overflow of d-editor-button-bar on mobile (#17563) --- app/assets/stylesheets/mobile/compose.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/assets/stylesheets/mobile/compose.scss b/app/assets/stylesheets/mobile/compose.scss index a3d629c407a..0da694d7140 100644 --- a/app/assets/stylesheets/mobile/compose.scss +++ b/app/assets/stylesheets/mobile/compose.scss @@ -235,3 +235,8 @@ margin-right: 6px; } } + +.d-editor-button-bar { + // can't hide overflow here because it hides the cog menu dropdown + overflow: unset; +}