Browse Source
Merge pull request #594 from gre/missing-padding
add missing padding in Manager & Settings
master
Meriadec Pillet
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
2 additions and
2 deletions
-
src/components/ManagerPage/Dashboard.js
-
src/components/SettingsPage/index.js
|
|
@ -24,7 +24,7 @@ type Props = { |
|
|
|
} |
|
|
|
|
|
|
|
const Dashboard = ({ device, deviceInfo, t }: Props) => ( |
|
|
|
<Box flow={4}> |
|
|
|
<Box flow={4} pb={8}> |
|
|
|
<Box> |
|
|
|
<Text ff="Museo Sans|Regular" fontSize={7} color="black"> |
|
|
|
{t('app:manager.title')} |
|
|
|
|
|
@ -118,7 +118,7 @@ class SettingsPage extends PureComponent<Props, State> { |
|
|
|
const items = this._items.filter(item => item.key !== 'currencies' || accountsCount > 0) |
|
|
|
|
|
|
|
return ( |
|
|
|
<Box> |
|
|
|
<Box pb={4}> |
|
|
|
<Box ff="Museo Sans|Regular" color="dark" fontSize={7} mb={5}> |
|
|
|
{t('app:settings.title')} |
|
|
|
</Box> |
|
|
|