From 8865fcea7cf76bd541bb48d88580dc4ff1d7c817 Mon Sep 17 00:00:00 2001 From: moist-webDev Date: Sat, 10 Jun 2023 20:49:51 -0400 Subject: [PATCH] style adjustment --- components/Button.tsx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/components/Button.tsx b/components/Button.tsx index 96a1855..46b3242 100644 --- a/components/Button.tsx +++ b/components/Button.tsx @@ -12,15 +12,16 @@ const cstyle = (theme:any) => { return StyleSheet.create({ button: { backgroundColor: theme.primary, - padding: 10, + padding: 12, alignContent: 'center', textAlign: 'center', justifyContent: 'center', color: theme.text, - margin: 10, - borderRadius: 5, + margin: 5, + borderRadius: 10, }, text: { + textAlign: 'center', color: theme.text, }, });