From b9d4e61fdfb722c597c20643c6b5bbb80d7e377a Mon Sep 17 00:00:00 2001 From: Rikku Date: Mon, 24 Jun 2019 22:39:02 +0300 Subject: [PATCH] fix margin between the plus button and bottom tab bar #8166 Signed-off-by: Dmitry Novotochinov --- src/status_im/ui/screens/home/styles.cljs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/status_im/ui/screens/home/styles.cljs b/src/status_im/ui/screens/home/styles.cljs index 7d9330bb7e..9ccde9d5b8 100644 --- a/src/status_im/ui/screens/home/styles.cljs +++ b/src/status_im/ui/screens/home/styles.cljs @@ -188,7 +188,10 @@ (def action-button-container {:position :absolute :align-items :center - :bottom (+ tabs.styles/tabs-diff 6) + :bottom (+ tabs.styles/tabs-diff (cond + platform/ios? 16 + platform/android? 0 + platform/desktop? 6)) :width 40 :height 40})