Regression: Reset E2E Key section missing padding (#4595)

This commit is contained in:
Reinaldo Neto 2022-10-07 12:01:04 -03:00 committed by Diego Mello
parent 5ce5b226b9
commit b5e1825040
1 changed files with 4 additions and 2 deletions

View File

@ -40,6 +40,9 @@ const styles = StyleSheet.create({
}, },
changePasswordButton: { changePasswordButton: {
marginBottom: 4 marginBottom: 4
},
separator: {
marginBottom: 16
} }
}); });
@ -148,8 +151,7 @@ class E2EEncryptionSecurityView extends React.Component<IE2EEncryptionSecurityVi
testID='e2e-encryption-security-view-change-password' testID='e2e-encryption-security-view-change-password'
/> />
</List.Section> </List.Section>
<List.Separator style={styles.separator} />
<List.Separator />
</> </>
); );
}; };