From 44985d2312bcb12969e7d1d476b96b0f522b9a19 Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Thu, 21 Sep 2023 17:36:33 -0700 Subject: [PATCH] Dont reposition load latest button on desktop (#1508) --- src/view/com/util/load-latest/LoadLatestBtn.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/view/com/util/load-latest/LoadLatestBtn.tsx b/src/view/com/util/load-latest/LoadLatestBtn.tsx index 904f5723..f5d12ce2 100644 --- a/src/view/com/util/load-latest/LoadLatestBtn.tsx +++ b/src/view/com/util/load-latest/LoadLatestBtn.tsx @@ -28,7 +28,8 @@ export const LoadLatestBtn = observer(function LoadLatestBtnImpl({ const minMode = store.shell.minimalShellMode const bottom = isTablet ? 50 - : (minMode ? 16 : 60) + (isWeb ? 20 : clamp(safeAreaInsets.bottom, 15, 60)) + : (minMode || isDesktop ? 16 : 60) + + (isWeb ? 20 : clamp(safeAreaInsets.bottom, 15, 60)) return (