From 928fab1c4eff1d60c0531594b5055da5eb7089ab Mon Sep 17 00:00:00 2001 From: Joffrey JAFFEUX Date: Tue, 16 May 2023 22:32:07 +0200 Subject: [PATCH] FIX: compensate for lack of replying indicator on draft (#21597) As we don't have the spacing generated by the replying indicator, we need to manually add spacing. --- .../chat/assets/stylesheets/common/chat-draft-channel.scss | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/plugins/chat/assets/stylesheets/common/chat-draft-channel.scss b/plugins/chat/assets/stylesheets/common/chat-draft-channel.scss index 6f5e4d1f9e9..d40c21cf084 100644 --- a/plugins/chat/assets/stylesheets/common/chat-draft-channel.scss +++ b/plugins/chat/assets/stylesheets/common/chat-draft-channel.scss @@ -37,7 +37,9 @@ } } - .chat-composer__wrapper { - padding-bottom: 0.5em; + .ios-device.keyboard-visible & { + .chat-composer__wrapper { + padding-bottom: 1rem; + } } }