From 3acd4f7a4c0a08d5f6c612d6012b5c30e44e2668 Mon Sep 17 00:00:00 2001 From: GabrielTrettel Date: Fri, 26 Feb 2021 17:25:55 -0300 Subject: [PATCH] Making submit button like prototype --- src/app/components/Button.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/components/Button.js b/src/app/components/Button.js index d2a9e2c..d4a9ced 100644 --- a/src/app/components/Button.js +++ b/src/app/components/Button.js @@ -17,16 +17,16 @@ function AppButton({ title, onPress, color = "primary" }) { const styles = StyleSheet.create({ button: { backgroundColor: colors.primary, - borderRadius: 25, + borderRadius: 6, justifyContent: "center", alignItems: "center", - padding: 15, width: "100%", + height: 42, marginVertical: 10, }, text: { color: colors.white, - fontSize: 18, + fontSize: 16, textTransform: "uppercase", fontWeight: "bold", },