Fix hairline and tab bottom border for tabs on safe view page
This commit is contained in:
parent
574b207ebd
commit
91992ccaaf
|
@ -32,7 +32,8 @@ type State = {
|
|||
tabIndex: number,
|
||||
}
|
||||
|
||||
type Props = SelectorProps & Actions & {
|
||||
type Props = SelectorProps &
|
||||
Actions & {
|
||||
classes: Object,
|
||||
granted: boolean,
|
||||
}
|
||||
|
@ -149,7 +150,7 @@ class Layout extends React.Component<Props, State> {
|
|||
<Tab label="Settings" data-testid={SETTINGS_TAB_BTN_TEST_ID} />
|
||||
</Tabs>
|
||||
</Row>
|
||||
<Hairline color={border} />
|
||||
<Hairline color={border} style={{ marginTop: '-2px' }} />
|
||||
{tabIndex === 0 && (
|
||||
<Balances
|
||||
ethBalance={ethBalance}
|
||||
|
|
Loading…
Reference in New Issue