From 51f7dc9ab8d07512680547504176acf953103f7b Mon Sep 17 00:00:00 2001 From: Daeraxa <58074586+Daeraxa@users.noreply.github.com> Date: Mon, 13 Dec 2021 10:34:54 +0000 Subject: [PATCH] Desktop: Changed note sort buttons to 3px radius (#5771) --- .../app-desktop/gui/NoteListControls/NoteListControls.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/app-desktop/gui/NoteListControls/NoteListControls.tsx b/packages/app-desktop/gui/NoteListControls/NoteListControls.tsx index 0dc246b788a..d6eb43d2f84 100644 --- a/packages/app-desktop/gui/NoteListControls/NoteListControls.tsx +++ b/packages/app-desktop/gui/NoteListControls/NoteListControls.tsx @@ -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; `;