From 53cea00c67bb5f375bbd4f1838afae5a843ff612 Mon Sep 17 00:00:00 2001 From: Alexander Date: Mon, 17 Apr 2023 20:40:48 +0200 Subject: [PATCH] Fix for "Pending requests" label not being shown in light mode (#15667) * Fix for "Pending requests" label not being shown in light mode * Smallish font weight update * Color update --- .../contexts/chat/home/contact_request/view.cljs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/status_im2/contexts/chat/home/contact_request/view.cljs b/src/status_im2/contexts/chat/home/contact_request/view.cljs index 46a90245ef..16844aaa55 100644 --- a/src/status_im2/contexts/chat/home/contact_request/view.cljs +++ b/src/status_im2/contexts/chat/home/contact_request/view.cljs @@ -45,8 +45,12 @@ [rn/view {:style (style/contact-requests-icon)} [quo/icon :i/pending-user {:color (colors/theme-colors colors/neutral-50 colors/neutral-40)}]] [rn/view {:style {:margin-left 8}} - [rn/text {:weight :semi-bold} (i18n/label :t/pending-requests)] - [rn/text + [quo/text + {:size :paragraph-1 + :weight :semi-bold + :style {:color (colors/theme-colors colors/neutral-100 colors/white)}} + (i18n/label :t/pending-requests)] + [quo/text {:size :paragraph-2 :style {:color (colors/theme-colors colors/neutral-50 colors/neutral-40)}} (requests-summary requests)]]