From 31feb6516738b4e443266c75c6294f9aafa81051 Mon Sep 17 00:00:00 2001 From: Joffrey JAFFEUX Date: Thu, 8 Jun 2023 17:37:28 +0200 Subject: [PATCH] UI: correctly adds spacing for selection-management (#22006) On iOS the safe area was not applied correctly. --- .../assets/stylesheets/mobile/chat-selection-manager.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/plugins/chat/assets/stylesheets/mobile/chat-selection-manager.scss b/plugins/chat/assets/stylesheets/mobile/chat-selection-manager.scss index 97f0643313d..9774a36e294 100644 --- a/plugins/chat/assets/stylesheets/mobile/chat-selection-manager.scss +++ b/plugins/chat/assets/stylesheets/mobile/chat-selection-manager.scss @@ -3,6 +3,7 @@ display: flex; flex-direction: column; width: 100%; + padding-bottom: env(safe-area-inset-bottom); .cancel-btn { margin-left: initial; @@ -10,6 +11,10 @@ .btn { margin-bottom: 0.25em; + + &:last-child { + margin-bottom: 0; + } } } }