Skip to content
Snippets Groups Projects
Commit 1310da78 authored by Anton Kulyk's avatar Anton Kulyk Committed by Nemanja
Browse files

Fix border radius for circle icon

parent a5a5cf24
Branches
Tags
No related merge requests found
......@@ -7,7 +7,7 @@ const IconButtonWrapper = styled.button.attrs({ type: "button" })`
align-items: center;
justify-content: center;
background-color: ${color("bg-medium")};
border-radius: ${props => (props.circle ? "99px" : "6px")};
border-radius: ${props => (props.circle ? "50%" : "6px")};
`;
export default IconButtonWrapper;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment