From 98d3a03a12c129c71ed2906e630929a74de63d62 Mon Sep 17 00:00:00 2001 From: IshaVenikar Date: Tue, 30 Jul 2024 16:09:09 +0530 Subject: [PATCH] Add padding to create wallet button --- src/styles/stylesheet.js | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/src/styles/stylesheet.js b/src/styles/stylesheet.js index 7e9cf8c..017d59e 100644 --- a/src/styles/stylesheet.js +++ b/src/styles/stylesheet.js @@ -5,6 +5,7 @@ const styles = StyleSheet.create({ marginTop: 20, width: 150, alignSelf: 'center', + marginBottom: 40 }, signLink: { alignItems: 'flex-end', @@ -259,25 +260,25 @@ const styles = StyleSheet.create({ display: 'flex', alignItems: 'center', marginTop: 20, - marginBottom: 20 + marginBottom: 20, }, disconnectSession: { display: 'flex', - justifyContent: 'center' + justifyContent: 'center', }, sessionItem: { paddingLeft: 12, - borderBottomWidth: 0.5 + borderBottomWidth: 0.5, }, sessionsContainer: { paddingLeft: 12, - borderBottomWidth: 0.5 + borderBottomWidth: 0.5, }, walletConnectUriText: { padding: 10 }, walletConnectLogo: { width: 24, height: 15, - margin: 0 + margin: 0, }, selectNetworkText: { fontWeight: 'bold', @@ -295,11 +296,11 @@ const styles = StyleSheet.create({ padding: 8, }, linkContainer: { - paddingBottom: 72 + paddingBottom: 72, }, networksButton: { marginTop: 12, - marginBottom: 20 + marginBottom: 20, } });