Skip to content

Commit

Permalink
fix(ui-ux): fixed address title in address input screen
Browse files Browse the repository at this point in the history
  • Loading branch information
fullstackninja864 committed Oct 17, 2023
1 parent 4266a32 commit 69f8a4c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions mobile-app/app/components/SummaryTitle.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,10 @@ export function SummaryTitle(props: ISummaryTitleProps): JSX.Element {
<ThemedViewV2
style={tailwind(
"flex flex-row items-center overflow-hidden rounded-full pr-2.5 py-1 ml-2",
{
"pl-1": props.addressType === AddressType.WalletAddress,
"pl-2.5": props.addressType !== AddressType.WalletAddress,
},
)}
light={tailwind("bg-mono-light-v2-200")}
dark={tailwind("bg-mono-dark-v2-200")}
Expand Down

0 comments on commit 69f8a4c

Please sign in to comment.