Skip to content

Commit

Permalink
fix: fix PR comment
Browse files Browse the repository at this point in the history
  • Loading branch information
salimtb committed Apr 22, 2024
1 parent 5054aa4 commit 3264b03
Showing 1 changed file with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,6 @@ const createStyles = (colors) =>
},
inlineWarningMessage: {
paddingVertical: 2,
fontSize: 14,
color: colors.warning.default,
...typography.sBodyMD,
},
Expand Down Expand Up @@ -235,6 +234,10 @@ const createStyles = (colors) =>
color: colors.primary.default,
marginTop: 1,
},
bottomSection: {
paddingHorizontal: 16,
paddingVertical: 20,
},
});

const allNetworks = getAllNetworks();
Expand Down Expand Up @@ -1119,7 +1122,7 @@ class NetworkSettings extends PureComponent {
style={styles.wrapper}
testID={NetworksViewSelectorsIDs.CONTAINER}
>
<View style={styles.informationCustomWrapper}>
<KeyboardAwareScrollView style={styles.informationCustomWrapper}>
{!networkTypeOrRpcUrl ? (
<WarningMessage
style={styles.warningContainer}
Expand Down Expand Up @@ -1260,6 +1263,8 @@ class NetworkSettings extends PureComponent {
keyboardAppearance={themeAppearance}
/>
</View>
</KeyboardAwareScrollView>
<View style={styles.bottomSection}>
{isCustomMainnet ? (
<Button
variant={ButtonVariants.Primary}
Expand Down

0 comments on commit 3264b03

Please sign in to comment.