fix margin between the plus button and bottom tab bar #8166

Signed-off-by: Dmitry Novotochinov <dmitry.novot@gmail.com>
This commit is contained in:
Rikku 2019-06-24 22:39:02 +03:00 committed by Dmitry Novotochinov
parent adb90e35de
commit b9d4e61fdf
No known key found for this signature in database
GPG Key ID: 43D1DAF5AD39C927
1 changed files with 4 additions and 1 deletions

View File

@ -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})