1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +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')} name={this.context.t('assets')}
tabKey="assets" tabKey="assets"
> >
<AssetList <Box marginTop={2}>
onClickAsset={(asset) => <AssetList
history.push(`${ASSET_ROUTE}/${asset}`) onClickAsset={(asset) =>
} history.push(`${ASSET_ROUTE}/${asset}`)
/> }
/>
</Box>
</Tab> </Tab>
<Tab <Tab
activeClassName="home__tab--active" activeClassName="home__tab--active"