From 4695ef65d0acf7a0082a8bf8490bdf55f204ee82 Mon Sep 17 00:00:00 2001 From: Mohamed Javid <19339952+smohamedjavid@users.noreply.github.com> Date: Thu, 8 Jun 2023 17:01:01 +0800 Subject: [PATCH] [Update] Identifiers screen design (#16220) Signed-off-by: Mohamed Javid <19339952+smohamedjavid@users.noreply.github.com> --- src/quo2/components/profile/profile_card/style.cljs | 3 ++- src/quo2/components/profile/profile_card/view.cljs | 5 ++--- src/status_im2/contexts/onboarding/identifiers/style.cljs | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/quo2/components/profile/profile_card/style.cljs b/src/quo2/components/profile/profile_card/style.cljs index 5eb4a54688..78f30557c3 100644 --- a/src/quo2/components/profile/profile_card/style.cljs +++ b/src/quo2/components/profile/profile_card/style.cljs @@ -27,7 +27,8 @@ {:color colors/white}) (def emoji-hash - {:margin-top 12}) + {:margin-top 12 + :letter-spacing 1.5}) (def user-hash {:margin-top 2 diff --git a/src/quo2/components/profile/profile_card/view.cljs b/src/quo2/components/profile/profile_card/view.cljs index 705b3a32dc..c0adec5435 100644 --- a/src/quo2/components/profile/profile_card/view.cljs +++ b/src/quo2/components/profile/profile_card/view.cljs @@ -94,9 +94,8 @@ style/keycard-icon))] (when show-user-hash? [text/text - {:weight :monospace - :number-of-lines 1 - :style style/user-hash} hash]) + {:weight :monospace + :style style/user-hash} hash]) (when (and show-emoji-hash? emoji-hash) [text/text {:weight :monospace diff --git a/src/status_im2/contexts/onboarding/identifiers/style.cljs b/src/status_im2/contexts/onboarding/identifiers/style.cljs index a652e0e35f..05571084e3 100644 --- a/src/status_im2/contexts/onboarding/identifiers/style.cljs +++ b/src/status_im2/contexts/onboarding/identifiers/style.cljs @@ -5,7 +5,7 @@ (def content-container {:position :absolute - :top 160 + :top 170 :bottom 0 :left 0 :right 0})