diff options
author | dan <dan.abramov@gmail.com> | 2024-03-06 16:12:37 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-06 16:12:37 +0000 |
commit | 2e0f8064411cc8d06013276353ce72ac8d9a0e2b (patch) | |
tree | 7743a083eb5153a79b4bf627427aa237ee8a3454 | |
parent | eb298d2e60a0ddf26ebaf8f27373418bbf7769e3 (diff) | |
download | voidsky-2e0f8064411cc8d06013276353ce72ac8d9a0e2b.tar.zst |
Fix jumpy moderation icon on desktop (#3125)
-rw-r--r-- | src/view/shell/desktop/LeftNav.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/shell/desktop/LeftNav.tsx b/src/view/shell/desktop/LeftNav.tsx index def0333c7..c56ba941e 100644 --- a/src/view/shell/desktop/LeftNav.tsx +++ b/src/view/shell/desktop/LeftNav.tsx @@ -391,7 +391,7 @@ export function DesktopLeftNav() { <FontAwesomeIcon icon="hand" style={pal.text as FontAwesomeIconStyle} - size={isDesktop ? 20 : 26} + size={isDesktop ? 23 : 26} /> } label={_(msg`Moderation`)} |