about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2023-02-24 11:51:35 -0600
committerPaul Frazee <pfrazee@gmail.com>2023-02-24 11:51:35 -0600
commit70e74efe69ba0989f519c7347ade01cd7a87f874 (patch)
treeb6d3116e24f9e64bf7c1754be1b85514a5fb5e81 /src
parent9bda3b72d06c31fd8c2bf3dbaa0c3a1bad62747f (diff)
downloadvoidsky-70e74efe69ba0989f519c7347ade01cd7a87f874.tar.zst
Hold off on customizing web feed rendering for now
Diffstat (limited to 'src')
-rw-r--r--src/view/com/posts/FeedItem.tsx9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/view/com/posts/FeedItem.tsx b/src/view/com/posts/FeedItem.tsx
index 8c46cb1a8..474afb55b 100644
--- a/src/view/com/posts/FeedItem.tsx
+++ b/src/view/com/posts/FeedItem.tsx
@@ -22,7 +22,6 @@ import {s} from 'lib/styles'
 import {useStores} from 'state/index'
 import {usePalette} from 'lib/hooks/usePalette'
 import {useAnalytics} from 'lib/analytics'
-import {isDesktopWeb} from 'platform/detection'
 
 export const FeedItem = observer(function ({
   item,
@@ -109,7 +108,6 @@ export const FeedItem = observer(function ({
   const isNoTop = isChild && !item._isThreadChild
   const outerStyles = [
     styles.outer,
-    isDesktopWeb && styles.outerDesktopWeb,
     pal.view,
     {borderColor: pal.colors.border},
     isSmallTop ? styles.outerSmallTop : undefined,
@@ -275,12 +273,6 @@ const styles = StyleSheet.create({
     paddingRight: 15,
     paddingBottom: 8,
   },
-  outerDesktopWeb: {
-    borderWidth: 1,
-    borderRadius: 4,
-    marginBottom: 10,
-    paddingBottom: 10,
-  },
   outerNoTop: {
     borderTopWidth: 0,
     paddingTop: 0,
@@ -290,7 +282,6 @@ const styles = StyleSheet.create({
   },
   outerNoBottom: {
     paddingBottom: 2,
-    marginBottom: 0,
   },
   topReplyLine: {
     position: 'absolute',