Skip to content

Commit

Permalink
Desktop: Changed note sort buttons to 3px radius (#5771)
Browse files Browse the repository at this point in the history
  • Loading branch information
Daeraxa authored Dec 13, 2021
1 parent eca964b commit 51f7dc9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,15 @@ const StyledButton = styled(Button)`

const StyledPairButtonL = styled(Button)`
margin-left: 8px;
border-radius: 5px 0 0 5px;
border-radius: 3px 0 0 3px;
min-width: ${(props: any) => buttonSizePx(props)}px;
max-width: ${(props: any) => buttonSizePx(props)}px;
`;

const StyledPairButtonR = styled(Button)`
min-width: 8px;
margin-left: 0px;
border-radius: 0 5px 5px 0;
border-radius: 0 3px 3px 0;
border-width: 1px 1px 1px 0;
width: auto;
`;
Expand Down

0 comments on commit 51f7dc9

Please sign in to comment.