Skip to content

Commit

Permalink
859: Fixed TokenAccountButton border
Browse files Browse the repository at this point in the history
  • Loading branch information
piersss committed Nov 14, 2023
1 parent d6e4585 commit ef1a738
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions src/components/TokenSelect/TokenSelect.styles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@ import { MdKeyboardArrowDown } from "react-icons/md";
import styled, { css, keyframes } from "styled-components/macro";

import isActiveLanguageLogographic from "../../helpers/isActiveLanguageLogographic";
import { BorderlessButtonStyle } from "../../style/mixins";
import {
BorderlessButtonStyle,
InputOrButtonBorderStyle,
} from "../../style/mixins";
import AccountLink from "../AccountLink/AccountLink";
import TokenLogo from "../TokenLogo/TokenLogo";
import StyledTokenLogo from "../TokenLogo/TokenLogo.styles";
Expand Down Expand Up @@ -278,10 +281,13 @@ export const PlaceholderContainer = styled.div`
`;

export const TokenAccountButton = styled(AccountLink)`
border: 1px solid ${(props) => props.theme.colors.borderGrey};
${InputOrButtonBorderStyle};
border-radius: 50%;
min-width: 1.5rem;
min-height: 1.5rem;
margin-right: 0.5rem;
min-width: 1.625rem;
max-width: 1.625rem;
min-height: 1.625rem;
max-height: 1.625rem;
background: ${(props) => props.theme.colors.black};
`;

0 comments on commit ef1a738

Please sign in to comment.