Skip to content

Commit

Permalink
[FIX] creation options height
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielbazan7 committed Sep 30, 2024
1 parent 457d8b4 commit 1907eda
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/styled/Containers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ export const OptionListContainer = styled.View`

export const OptionList = styled.TouchableOpacity`
background-color: ${({theme: {dark}}) => (dark ? LightBlack : Feather)};
height: 100px;
height: auto;
border-radius: 12px;
margin-bottom: ${ScreenGutter};
flex-direction: row;
Expand Down
2 changes: 1 addition & 1 deletion src/navigation/wallet/screens/CreationOptions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ const CreationOptions: React.FC<CreationOptionsScreenProps> = ({
id: 'import',
title: t('Import Key'),
description: t(
'Recover an existing key by entering your 12-word passphrase to access your wallets and accounts.',
'Recover an existing key by entering your 12-word passphrase to access your wallets and accounts',
),
cta: () => {
dispatch(
Expand Down

0 comments on commit 1907eda

Please sign in to comment.