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
parent
commit
e17e878909
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/components/ManagerPage/Dashboard.js
  2. 2
      src/components/SettingsPage/index.js

2
src/components/ManagerPage/Dashboard.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')}

2
src/components/SettingsPage/index.js

@ -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>

Loading…
Cancel
Save