Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ export default function SelectorButton({

const Wrapper = styled.button`
--height: 48px;
--padding: 8px;
--padding: 6px;
height: var(--height);
position: relative;
display: flex;
Expand Down Expand Up @@ -186,27 +186,27 @@ const TokenStack = styled.div`
padding-inline: var(--padding);
position: relative;
flex-grow: 0;
display: flex;
flex-direction: column;
align-items: center;
`;

const TokenImg = styled(TokenImage)`
border-radius: 50%;
position: absolute;
top: var(--padding);
left: var(--padding);
width: calc(var(--height) * 0.66);
height: calc(var(--height) * 0.66);
width: 32px;
height: 32px;
z-index: 1;
`;

const ChainImg = styled(TokenImage)`
border-radius: 50%;
border: 1px solid transparent;
background: ${COLORS["grey-600"]};
width: 14px;
height: 14px;
position: absolute;
bottom: calc(var(--padding) / 2);
right: calc(var(--padding) / 2);
width: 30%;
height: 30%;
bottom: 4px;
left: 34px;
z-index: 2;
`;

Expand Down
Loading