style adjustment

This commit is contained in:
moist-webDev 2023-06-10 20:49:51 -04:00
parent 018f774a88
commit 8865fcea7c
1 changed files with 4 additions and 3 deletions

View File

@ -12,15 +12,16 @@ const cstyle = (theme:any) => {
return StyleSheet.create({ return StyleSheet.create({
button: { button: {
backgroundColor: theme.primary, backgroundColor: theme.primary,
padding: 10, padding: 12,
alignContent: 'center', alignContent: 'center',
textAlign: 'center', textAlign: 'center',
justifyContent: 'center', justifyContent: 'center',
color: theme.text, color: theme.text,
margin: 10, margin: 5,
borderRadius: 5, borderRadius: 10,
}, },
text: { text: {
textAlign: 'center',
color: theme.text, color: theme.text,
}, },
}); });