diff options
| -rw-r--r-- | app/components/PreferencesStyles.js | 2 | ||||
| -rw-r--r-- | app/components/SettingsStyles.js | 3 | ||||
| -rw-r--r-- | app/components/SupportStyles.js | 4 |
3 files changed, 3 insertions, 6 deletions
diff --git a/app/components/PreferencesStyles.js b/app/components/PreferencesStyles.js index a0dfcb2d7b..7c1693e300 100644 --- a/app/components/PreferencesStyles.js +++ b/app/components/PreferencesStyles.js @@ -11,7 +11,7 @@ export default { preferences__container: { display: 'flex', flexDirection: 'column', - height: '100%', + flex: 1, }, preferences__header: { flexGrow: 0, diff --git a/app/components/SettingsStyles.js b/app/components/SettingsStyles.js index f054ecbce9..a47ec770d3 100644 --- a/app/components/SettingsStyles.js +++ b/app/components/SettingsStyles.js @@ -8,8 +8,7 @@ export default Object.assign(createViewStyles({ }, settings__container:{ flexDirection: 'column', - height: '100%', - paddingBottom: 48, + flex: 1 }, settings__header:{ flexGrow: 0, diff --git a/app/components/SupportStyles.js b/app/components/SupportStyles.js index fce2594783..1a0eb9eae3 100644 --- a/app/components/SupportStyles.js +++ b/app/components/SupportStyles.js @@ -9,8 +9,7 @@ export default Object.assign(createViewStyles({ support__container:{ display: 'flex', flexDirection: 'column', - height: '100%', - paddingBottom: 24, + flex: 1 }, support__header:{ flex: 0, @@ -39,7 +38,6 @@ export default Object.assign(createViewStyles({ display: 'flex', flexDirection: 'column', justifyContent: 'space-between', - paddingBottom: 24, }, support__form:{ display: 'flex', |
