Skip to content

Commit

Permalink
fix: Styles issues
Browse files Browse the repository at this point in the history
  • Loading branch information
letehaha committed Aug 30, 2023
1 parent b01a245 commit 58536b2
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
1 change: 0 additions & 1 deletion src/components/EditPicture.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,6 @@ export const EditPicture = ({
<UiButton
disabled={loading}
onPress={connected ? handlePickImage : () => setVisible(true)}
style={tw`flex flex-row items-center justify-center`}
content={t`Upload a picture...`}
loading={loading}
/>
Expand Down
2 changes: 1 addition & 1 deletion src/components/UiButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export const UiButton = ({
<TouchableOpacity
{...props}
style={[
tw`flex gap-3 flex-row items-center justify-center border-2 rounded-lg border-brand-primary px-2.5`,
tw`flex flex-grow gap-3 flex-row items-center justify-center border-2 rounded-lg border-brand-primary px-2.5`,
small && tw`py-0.5`,
!small && tw`py-1.5`,
!outline && tw`bg-brand-primary`,
Expand Down
4 changes: 1 addition & 3 deletions src/screens/DomainView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -525,7 +525,6 @@ export const DomainView = ({ domain }: { domain: string }) => {
}
small
content={t`Transfer`}
style={tw`basis-1/2`}
/>
)}
{isOwner && (
Expand Down Expand Up @@ -556,7 +555,6 @@ export const DomainView = ({ domain }: { domain: string }) => {
}
small
content={isTokenized ? t`Unwrap NFT` : t`Wrap to NFT`}
style={tw`basis-1/2`}
/>
)}
</>
Expand Down Expand Up @@ -778,7 +776,7 @@ export const DomainView = ({ domain }: { domain: string }) => {
>
<Trans>Add subdomain</Trans>

<Entypo name="plus" size={24} color="brand-primary" />
<Entypo name="plus" size={24} />
</Text>
</TouchableOpacity>
</View>
Expand Down

0 comments on commit 58536b2

Please sign in to comment.