1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 01:47:00 +01:00

UX Multichain: Added extra margin for native token (#18988)

* added extra margin for native token

* fixed lint errors

* added marginTop via css

* updated test

* added boxprops and margin bottom for tab component

* updated snapshot

* update asset list component
This commit is contained in:
Nidhi Kumari 2023-05-08 19:17:45 +05:30 committed by GitHub
parent 50f2d06223
commit e8dd6a6ff1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -701,11 +701,13 @@ export default class Home extends PureComponent {
name={this.context.t('assets')}
tabKey="assets"
>
<AssetList
onClickAsset={(asset) =>
history.push(`${ASSET_ROUTE}/${asset}`)
}
/>
<Box marginTop={2}>
<AssetList
onClickAsset={(asset) =>
history.push(`${ASSET_ROUTE}/${asset}`)
}
/>
</Box>
</Tab>
<Tab
activeClassName="home__tab--active"