Fix hairline and tab bottom border for tabs on safe view page
This commit is contained in:
parent
574b207ebd
commit
91992ccaaf
|
@ -32,10 +32,11 @@ type State = {
|
||||||
tabIndex: number,
|
tabIndex: number,
|
||||||
}
|
}
|
||||||
|
|
||||||
type Props = SelectorProps & Actions & {
|
type Props = SelectorProps &
|
||||||
classes: Object,
|
Actions & {
|
||||||
granted: boolean,
|
classes: Object,
|
||||||
}
|
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}
|
||||||
|
|
Loading…
Reference in New Issue