Commit 58dfadb1 authored by Justin Domingue's avatar Justin Domingue Committed by GitHub

handle custom token overflow (#1634)

parent 3d5f5f78
...@@ -21,7 +21,7 @@ const Wrapper = styled.div` ...@@ -21,7 +21,7 @@ const Wrapper = styled.div`
width: 100%; width: 100%;
height: calc(100% - 60px); height: calc(100% - 60px);
position: relative; position: relative;
padding-bottom: 60px; padding-bottom: 80px;
` `
const Footer = styled.div` const Footer = styled.div`
...@@ -96,7 +96,7 @@ export default function ManageTokens({ ...@@ -96,7 +96,7 @@ export default function ManageTokens({
return ( return (
<Wrapper> <Wrapper>
<Column style={{ width: '100%', flex: '1 1' }}> <Column style={{ width: '100%', height: '100%', flex: '1 1' }}>
<PaddedColumn gap="14px"> <PaddedColumn gap="14px">
<Row> <Row>
<SearchInput <SearchInput
...@@ -122,7 +122,7 @@ export default function ManageTokens({ ...@@ -122,7 +122,7 @@ export default function ManageTokens({
)} )}
</PaddedColumn> </PaddedColumn>
<Separator /> <Separator />
<PaddedColumn gap="lg"> <PaddedColumn gap="lg" style={{ overflow: 'auto', marginBottom: '10px' }}>
<RowBetween> <RowBetween>
<TYPE.main fontWeight={600}> <TYPE.main fontWeight={600}>
{userAddedTokens?.length} Custom {userAddedTokens.length === 1 ? 'Token' : 'Tokens'} {userAddedTokens?.length} Custom {userAddedTokens.length === 1 ? 'Token' : 'Tokens'}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment