From d09210f79c9cb04537f740f4596e047026f688d6 Mon Sep 17 00:00:00 2001 From: noumantahir Date: Fri, 17 Sep 2021 20:42:30 +0500 Subject: [PATCH] text style updates --- .../organisms/quickProfileModal/children/profileBasic.tsx | 2 +- .../quickProfileModal/children/quickProfileStyles.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/organisms/quickProfileModal/children/profileBasic.tsx b/src/components/organisms/quickProfileModal/children/profileBasic.tsx index e4881a12f..2b7597e38 100644 --- a/src/components/organisms/quickProfileModal/children/profileBasic.tsx +++ b/src/components/organisms/quickProfileModal/children/profileBasic.tsx @@ -53,7 +53,7 @@ export const ProfileBasic = ({avatarUrl, username, about, votingPower, isLoading {`@${username}`} - {about} + {!!about && {about}} {joinedString} diff --git a/src/components/organisms/quickProfileModal/children/quickProfileStyles.ts b/src/components/organisms/quickProfileModal/children/quickProfileStyles.ts index 9a143709f..7a2d696de 100644 --- a/src/components/organisms/quickProfileModal/children/quickProfileStyles.ts +++ b/src/components/organisms/quickProfileModal/children/quickProfileStyles.ts @@ -53,7 +53,7 @@ export default EStyleSheet.create({ alignSelf: 'center', textAlign: 'center', fontSize: 16, - fontWeight: 'bold', + fontWeight: 'normal', } as TextStyle, @@ -62,10 +62,10 @@ export default EStyleSheet.create({ alignSelf: 'center', textAlign: 'center', fontSize: 18, - fontWeight: '500', marginTop:6, } as TextStyle, + btnText:{ color:'$pureWhite' } as TextStyle,