Fix hairline and tab bottom border for tabs on safe view page

This commit is contained in:
Mikhail Mikheev 2019-09-06 17:49:35 +04:00
parent 574b207ebd
commit 91992ccaaf
1 changed files with 6 additions and 5 deletions

View File

@ -32,10 +32,11 @@ type State = {
tabIndex: number, tabIndex: number,
} }
type Props = SelectorProps & Actions & { type Props = SelectorProps &
Actions & {
classes: Object, classes: Object,
granted: boolean, granted: boolean,
} }
const openIconStyle = { const openIconStyle = {
height: '16px', height: '16px',
@ -149,7 +150,7 @@ class Layout extends React.Component<Props, State> {
<Tab label="Settings" data-testid={SETTINGS_TAB_BTN_TEST_ID} /> <Tab label="Settings" data-testid={SETTINGS_TAB_BTN_TEST_ID} />
</Tabs> </Tabs>
</Row> </Row>
<Hairline color={border} /> <Hairline color={border} style={{ marginTop: '-2px' }} />
{tabIndex === 0 && ( {tabIndex === 0 && (
<Balances <Balances
ethBalance={ethBalance} ethBalance={ethBalance}