Fix margins for settings page

This commit is contained in:
Brandon Presley 2022-11-16 17:10:31 +13:00
parent 58ab135b09
commit 19ec8ac5e9
1 changed files with 3 additions and 2 deletions

View File

@ -226,7 +226,6 @@ export default function SettingsPage() {
data={switches}
renderItem={renderItem}
/>
<View style={{marginBottom: MARGIN}} />
{'theme'.includes(term.toLowerCase()) && (
<Select
value={theme}
@ -260,7 +259,9 @@ export default function SettingsPage() {
/>
)}
{'alarm sound'.includes(term.toLowerCase()) && (
<Button style={{alignSelf: 'flex-start'}} onPress={changeSound}>
<Button
style={{alignSelf: 'flex-start', marginTop: MARGIN}}
onPress={changeSound}>
Alarm sound{soundString}
</Button>
)}