Skip to content
This repository has been archived by the owner on Dec 21, 2023. It is now read-only.

Commit

Permalink
fix bio exteeds
Browse files Browse the repository at this point in the history
  • Loading branch information
alantoa committed Oct 13, 2023
1 parent 1712ac6 commit bcca9f5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/app/components/profile/profile-top.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ export const ProfileTop = ({
)}
</Skeleton>
</Animated.View>
<View tw="ml-4 flex-row items-start justify-between">
<View tw="ml-4 flex-1 flex-row items-start justify-between">
<View tw="flex-1">
<Text
tw="max-w-45 text-xl font-bold text-gray-900 dark:text-white"
Expand Down Expand Up @@ -240,7 +240,7 @@ export const ProfileTop = ({
<View tw="items-baseline">
<ClampText
text={bioWithMentions}
maxLines={3}
maxLines={2}
tw="text-sm text-gray-900 dark:text-white"
/>
</View>
Expand Down
2 changes: 1 addition & 1 deletion packages/app/components/profile/profile.web.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ const Profile = ({ username }: ProfileScreenProps) => {
</>
) : null}
<View tw="w-full flex-row">
<View tw="-mt-4 flex-1">
<View tw="-mt-3 flex-1">
<ProfileTop
address={username}
isBlocked={isBlocked}
Expand Down

0 comments on commit bcca9f5

Please sign in to comment.