diff options
Diffstat (limited to 'src/view/shell/desktop/RightNav.tsx')
-rw-r--r-- | src/view/shell/desktop/RightNav.tsx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/view/shell/desktop/RightNav.tsx b/src/view/shell/desktop/RightNav.tsx index 26795e0fd..1e000340a 100644 --- a/src/view/shell/desktop/RightNav.tsx +++ b/src/view/shell/desktop/RightNav.tsx @@ -65,6 +65,7 @@ export function DesktopRightNav({routeName}: {routeName: string}) { style={[ gutters, a.gap_lg, + a.pr_2xs, web({ position: 'fixed', left: '50%', @@ -74,7 +75,10 @@ export function DesktopRightNav({routeName}: {routeName: string}) { }, ...a.scrollbar_offset.transform, ], - width: width + gutters.paddingLeft, + /** + * Compensate for the right padding above (2px) to retain intended width. + */ + width: width + gutters.paddingLeft + 2, maxHeight: '100%', overflowY: 'auto', }), |