Commit 4b9098a7 authored by Zach Pomerantz's avatar Zach Pomerantz Committed by GitHub

fix: token button overflow (#3504)

Removes the overflow property from TokenButton, which prevents the vertical scrollbar from rendering.
parent 71a246f2
...@@ -24,7 +24,6 @@ const TokenButtonRow = styled(Row)<{ collapsed: boolean }>` ...@@ -24,7 +24,6 @@ const TokenButtonRow = styled(Row)<{ collapsed: boolean }>`
height: 1.2em; height: 1.2em;
// max-width must have an absolute value in order to transition. // max-width must have an absolute value in order to transition.
max-width: ${({ collapsed }) => (collapsed ? '1.2em' : '12em')}; max-width: ${({ collapsed }) => (collapsed ? '1.2em' : '12em')};
overflow-x: hidden;
transition: max-width 0.25s linear; transition: max-width 0.25s linear;
` `
......
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