remove bad button style

This commit is contained in:
austinried 2021-08-26 12:49:26 +09:00
parent 23807a3506
commit 872dde4e1c

View File

@ -302,7 +302,7 @@ const SettingsContent = React.memo(() => {
/> />
<Button <Button
disabled={clearing} disabled={clearing}
style={[styles.button, styles.licenseButton]} style={styles.button}
title="Licenses (Android)" title="Licenses (Android)"
onPress={() => navigation.navigate('web', { uri: 'file:///android_asset/licenses/android_licenses.html' })} onPress={() => navigation.navigate('web', { uri: 'file:///android_asset/licenses/android_licenses.html' })}
buttonStyle="hollow" buttonStyle="hollow"
@ -395,12 +395,6 @@ const styles = StyleSheet.create({
}, },
modalTextSubmit: { modalTextSubmit: {
marginLeft: 15, marginLeft: 15,
// backgroundColor: 'green',
},
text: {
color: 'white',
fontFamily: font.regular,
fontSize: 15,
}, },
}) })