From 57227420296a2b952ddb999d4f6009495799d40f Mon Sep 17 00:00:00 2001 From: Alexander Zinchuk Date: Fri, 15 Oct 2021 14:02:29 +0300 Subject: [PATCH] Chat List: Fix flickering NewChatButton on iOS (#1500) --- src/components/left/NewChatButton.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/components/left/NewChatButton.scss b/src/components/left/NewChatButton.scss index dadc3b5ef..ce44c37c8 100644 --- a/src/components/left/NewChatButton.scss +++ b/src/components/left/NewChatButton.scss @@ -19,6 +19,12 @@ &.revealed { transform: translateY(0); + + @media (max-width: 600px) { + // Force rendering in the composite layer to fix the z-index rendering issue + transform: translate3d(0,0,10px); + transform-style: preserve-3d; + } } &.menu-is-open {