From 889d4c16a4612ca7ff4eb419bc0d20166493fa86 Mon Sep 17 00:00:00 2001 From: andrey Date: Tue, 15 Sep 2020 14:29:41 +0200 Subject: [PATCH] [#11163] No margin between "Block this user" button and main tabs panel on user profile view on iOS --- src/status_im/ui/screens/profile/contact/styles.cljs | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/status_im/ui/screens/profile/contact/styles.cljs b/src/status_im/ui/screens/profile/contact/styles.cljs index 52d23392cf..923b8e6559 100644 --- a/src/status_im/ui/screens/profile/contact/styles.cljs +++ b/src/status_im/ui/screens/profile/contact/styles.cljs @@ -2,12 +2,13 @@ (:require [status-im.ui.components.colors :as colors])) (def block-action-label - {:color colors/red - :padding-top 26 - :margin-left 16}) + {:color colors/red + :margin-top 26 + :margin-bottom 50 + :margin-left 16}) (def contact-profile-details-container - {:padding-top 26}) + {:padding-top 26}) (def contact-profile-detail-share-icon {:color colors/gray-transparent-40})