1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-24 10:27:10 +02:00

Desktop: Changed note sort buttons to 3px radius (#5771)

This commit is contained in:
Daeraxa 2021-12-13 10:34:54 +00:00 committed by GitHub
parent eca964b03b
commit 51f7dc9ab8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -36,7 +36,7 @@ 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;
`;
@ -44,7 +44,7 @@ const StyledPairButtonL = styled(Button)`
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;
`;