diff options
Diffstat (limited to 'app/components/SettingsStyles.js')
| -rw-r--r-- | app/components/SettingsStyles.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/app/components/SettingsStyles.js b/app/components/SettingsStyles.js index 6063a5a567..5e4eee192e 100644 --- a/app/components/SettingsStyles.js +++ b/app/components/SettingsStyles.js @@ -1,8 +1,8 @@ import { createViewStyles, createTextStyles } from '../lib/styles'; import { colors } from '../config'; -export default Object.assign( - createViewStyles({ +export default { + ...createViewStyles({ settings: { backgroundColor: colors.darkBlue, flex: 1, @@ -18,7 +18,7 @@ export default Object.assign( paddingTop: 16, paddingRight: 24, paddingLeft: 24, - paddingBottom: 16, + paddingBottom: 24, }, settings__content: { flexDirection: 'column', @@ -51,7 +51,7 @@ export default Object.assign( paddingBottom: 16, }, }), - createTextStyles({ + ...createTextStyles({ settings__title: { fontFamily: 'DINPro', fontSize: 32, @@ -63,4 +63,4 @@ export default Object.assign( color: colors.red, }, }), -); +}; |
