Add padding to create wallet button

This commit is contained in:
IshaVenikar 2024-07-30 16:09:09 +05:30
parent 27a56175a8
commit 98d3a03a12

View File

@ -5,6 +5,7 @@ const styles = StyleSheet.create({
marginTop: 20, marginTop: 20,
width: 150, width: 150,
alignSelf: 'center', alignSelf: 'center',
marginBottom: 40
}, },
signLink: { signLink: {
alignItems: 'flex-end', alignItems: 'flex-end',
@ -259,25 +260,25 @@ const styles = StyleSheet.create({
display: 'flex', display: 'flex',
alignItems: 'center', alignItems: 'center',
marginTop: 20, marginTop: 20,
marginBottom: 20 marginBottom: 20,
}, },
disconnectSession: { disconnectSession: {
display: 'flex', display: 'flex',
justifyContent: 'center' justifyContent: 'center',
}, },
sessionItem: { sessionItem: {
paddingLeft: 12, paddingLeft: 12,
borderBottomWidth: 0.5 borderBottomWidth: 0.5,
}, },
sessionsContainer: { sessionsContainer: {
paddingLeft: 12, paddingLeft: 12,
borderBottomWidth: 0.5 borderBottomWidth: 0.5,
}, },
walletConnectUriText: { padding: 10 }, walletConnectUriText: { padding: 10 },
walletConnectLogo: { walletConnectLogo: {
width: 24, width: 24,
height: 15, height: 15,
margin: 0 margin: 0,
}, },
selectNetworkText: { selectNetworkText: {
fontWeight: 'bold', fontWeight: 'bold',
@ -295,11 +296,11 @@ const styles = StyleSheet.create({
padding: 8, padding: 8,
}, },
linkContainer: { linkContainer: {
paddingBottom: 72 paddingBottom: 72,
}, },
networksButton: { networksButton: {
marginTop: 12, marginTop: 12,
marginBottom: 20 marginBottom: 20,
} }
}); });