about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2024-01-23 20:14:09 -0800
committerPaul Frazee <pfrazee@gmail.com>2024-01-23 20:14:09 -0800
commit8a59e5310e19a54fbf4b9d1a4b402fd4f11d18ab (patch)
tree931a98502fd3c2440daa0d655c6570abbf7e2834 /src
parent5cc20ac70c25c3be68416249ee02bdb1791f46dd (diff)
parent4942d0b7ac6f9d05cb64d4f049166ef6a561c686 (diff)
downloadvoidsky-8a59e5310e19a54fbf4b9d1a4b402fd4f11d18ab.tar.zst
Merge branch 'fix-margin' of https://github.com/quiple/social-app into quiple-fix-margin
Diffstat (limited to 'src')
-rw-r--r--src/view/com/posts/FeedItem.tsx2
-rw-r--r--src/view/screens/Lists.tsx2
-rw-r--r--src/view/screens/ModerationModlists.tsx2
-rw-r--r--src/view/shell/desktop/LeftNav.tsx2
4 files changed, 4 insertions, 4 deletions
diff --git a/src/view/com/posts/FeedItem.tsx b/src/view/com/posts/FeedItem.tsx
index a8aff0510..225607ca9 100644
--- a/src/view/com/posts/FeedItem.tsx
+++ b/src/view/com/posts/FeedItem.tsx
@@ -289,7 +289,7 @@ let FeedItemInner = ({
                     type="md"
                     did={replyAuthorDid}
                     attr="displayName"
-                    style={[pal.textLight, s.ml2]}
+                    style={[pal.textLight]}
                   />
                 </Trans>
               </Text>
diff --git a/src/view/screens/Lists.tsx b/src/view/screens/Lists.tsx
index 23d6c8fac..bdd5dd9b7 100644
--- a/src/view/screens/Lists.tsx
+++ b/src/view/screens/Lists.tsx
@@ -61,7 +61,7 @@ export function ListsScreen({}: Props) {
             <Trans>Public, shareable lists which can drive feeds.</Trans>
           </Text>
         </View>
-        <View>
+        <View style={[{marginLeft: 18}, isMobile && {marginLeft: 12}]}>
           <Button
             testID="newUserListBtn"
             type="default"
diff --git a/src/view/screens/ModerationModlists.tsx b/src/view/screens/ModerationModlists.tsx
index d6a3b5f6f..b7d993acc 100644
--- a/src/view/screens/ModerationModlists.tsx
+++ b/src/view/screens/ModerationModlists.tsx
@@ -63,7 +63,7 @@ export function ModerationModlistsScreen({}: Props) {
             </Trans>
           </Text>
         </View>
-        <View>
+        <View style={[{marginLeft: 18}, isMobile && {marginLeft: 12}]}>
           <Button
             testID="newModListBtn"
             type="default"
diff --git a/src/view/shell/desktop/LeftNav.tsx b/src/view/shell/desktop/LeftNav.tsx
index b27898828..8a2901f5c 100644
--- a/src/view/shell/desktop/LeftNav.tsx
+++ b/src/view/shell/desktop/LeftNav.tsx
@@ -446,7 +446,7 @@ const styles = StyleSheet.create({
     position: 'fixed',
     top: 10,
     // @ts-ignore web only
-    left: 'calc(50vw - 300px - 220px - 20px)',
+    left: 'calc(50vw - 300px - 220px - 10px)',
     width: 220,
     // @ts-ignore web only
     maxHeight: 'calc(100vh - 10px)',