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
This commit is contained in:
Alexander 2023-04-17 20:40:48 +02:00 committed by GitHub
parent 512af400d7
commit 53cea00c67
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 2 deletions

View File

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