about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/view/screens/Home.tsx10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/view/screens/Home.tsx b/src/view/screens/Home.tsx
index 078fb9800..fe31b4ee0 100644
--- a/src/view/screens/Home.tsx
+++ b/src/view/screens/Home.tsx
@@ -101,7 +101,10 @@ export const Home = observer(function Home({
       />
       {defaultFeedView.hasNewLatest ? (
         <TouchableOpacity
-          style={styles.loadLatest}
+          style={[
+            styles.loadLatest,
+            store.shell.minimalShellMode ? styles.loadLatestLow : undefined,
+          ]}
           onPress={onPressLoadLatest}
           hitSlop={HITSLOP}>
           <FontAwesomeIcon icon="arrow-up" style={{color: colors.white}} />
@@ -117,7 +120,7 @@ const styles = StyleSheet.create({
     flexDirection: 'row',
     position: 'absolute',
     left: 10,
-    bottom: 15,
+    bottom: 60,
     backgroundColor: colors.pink3,
     paddingHorizontal: 12,
     paddingVertical: 10,
@@ -126,6 +129,9 @@ const styles = StyleSheet.create({
     shadowOpacity: 0.3,
     shadowOffset: {width: 0, height: 1},
   },
+  loadLatestLow: {
+    bottom: 15,
+  },
   loadLatestText: {
     color: colors.white,
     fontWeight: 'bold',