Skip to content

Commit 1fb93ba

Browse files
committed
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
1 parent b62c494 commit 1fb93ba

File tree

1 file changed

+6
-2
lines changed
  • src/status_im2/contexts/chat/home/contact_request

1 file changed

+6
-2
lines changed

src/status_im2/contexts/chat/home/contact_request/view.cljs

+6-2
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,12 @@
4545
[rn/view {:style (style/contact-requests-icon)}
4646
[quo/icon :i/pending-user {:color (colors/theme-colors colors/neutral-50 colors/neutral-40)}]]
4747
[rn/view {:style {:margin-left 8}}
48-
[rn/text {:weight :semi-bold} (i18n/label :t/pending-requests)]
49-
[rn/text
48+
[quo/text
49+
{:size :paragraph-1
50+
:weight :semi-bold
51+
:style {:color (colors/theme-colors colors/neutral-100 colors/white)}}
52+
(i18n/label :t/pending-requests)]
53+
[quo/text
5054
{:size :paragraph-2
5155
:style {:color (colors/theme-colors colors/neutral-50 colors/neutral-40)}}
5256
(requests-summary requests)]]

0 commit comments

Comments
 (0)