diff options
| author | anderklander <anderklander@gmail.com> | 2018-02-08 20:08:04 +0100 |
|---|---|---|
| committer | anderklander <anderklander@gmail.com> | 2018-02-15 16:02:02 +0100 |
| commit | 7f6e3f863d6eb3dbedf7eb04f35ddfad0486a7f5 (patch) | |
| tree | 6c7301dad332c946dfb1eb97b938166f96d7f498 | |
| parent | 90bc44decb63797323d6ab7c9f6c90b11af42b6d (diff) | |
| download | mullvadvpn-7f6e3f863d6eb3dbedf7eb04f35ddfad0486a7f5.tar.xz mullvadvpn-7f6e3f863d6eb3dbedf7eb04f35ddfad0486a7f5.zip | |
Style cleanup
| -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', |
