diff options
author | Eric Bailey <git@esb.lol> | 2023-08-08 11:36:48 -0500 |
---|---|---|
committer | Eric Bailey <git@esb.lol> | 2023-08-08 11:36:48 -0500 |
commit | c48ff1855c40dd445c56113c72d1970c2df48ccc (patch) | |
tree | b4861ff3ee29778b738a14de364158643915c399 /src | |
parent | 8cb076f5fd8d4435703ac1ac4705c275eb38c0e8 (diff) | |
download | voidsky-c48ff1855c40dd445c56113c72d1970c2df48ccc.tar.zst |
remove unused styles
Diffstat (limited to 'src')
-rw-r--r-- | src/view/com/post-thread/PostThreadItem.tsx | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/view/com/post-thread/PostThreadItem.tsx b/src/view/com/post-thread/PostThreadItem.tsx index cbdd90b86..c7b5711c0 100644 --- a/src/view/com/post-thread/PostThreadItem.tsx +++ b/src/view/com/post-thread/PostThreadItem.tsx @@ -34,8 +34,6 @@ import {formatCount} from '../util/numeric/format' import {TimeElapsed} from 'view/com/util/TimeElapsed' import {makeProfileLink} from 'lib/routes/links' -const PARENT_REPLY_LINE_LENGTH = 8 - export const PostThreadItem = observer(function PostThreadItem({ item, onPostReply, @@ -529,20 +527,6 @@ const styles = StyleSheet.create({ noTopBorder: { borderTopWidth: 0, }, - parentReplyLine: { - position: 'absolute', - left: 44, - top: -1 * PARENT_REPLY_LINE_LENGTH + 6, - height: PARENT_REPLY_LINE_LENGTH, - borderLeftWidth: 2, - }, - childReplyLine: { - position: 'absolute', - left: 44, - top: 65, - bottom: 0, - borderLeftWidth: 2, - }, layout: { flexDirection: 'row', gap: 10, |