Commit 43e1fe97 authored by Tina Zheng's avatar Tina Zheng Committed by GitHub

fix: double scroll in manage token list (#3020)

* fix double scroll

* remove bottom padding
parent e9a9dd97
...@@ -16,7 +16,8 @@ import { PaddedColumn, Separator } from './styleds' ...@@ -16,7 +16,8 @@ import { PaddedColumn, Separator } from './styleds'
const Wrapper = styled.div` const Wrapper = styled.div`
width: 100%; width: 100%;
position: relative; position: relative;
padding-bottom: 80px; display: flex;
flex-flow: column;
` `
const ToggleWrapper = styled(RowBetween)` const ToggleWrapper = styled(RowBetween)`
......
...@@ -31,7 +31,8 @@ import { CurrencyModalView } from './CurrencySearchModal' ...@@ -31,7 +31,8 @@ import { CurrencyModalView } from './CurrencySearchModal'
import { PaddedColumn, SearchInput, Separator, SeparatorDark } from './styleds' import { PaddedColumn, SearchInput, Separator, SeparatorDark } from './styleds'
const Wrapper = styled(Column)` const Wrapper = styled(Column)`
height: 100%; flex: 1;
overflow-y: hidden;
` `
const UnpaddedLinkStyledButton = styled(LinkStyledButton)` const UnpaddedLinkStyledButton = styled(LinkStyledButton)`
...@@ -229,7 +230,7 @@ const ListContainer = styled.div` ...@@ -229,7 +230,7 @@ const ListContainer = styled.div`
padding: 1rem; padding: 1rem;
height: 100%; height: 100%;
overflow: auto; overflow: auto;
padding-bottom: 80px; flex: 1;
` `
export function ManageLists({ export function ManageLists({
......
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