Remove unnecessary horizontal line for nested replies in ThreadedPost component

- Eliminated the horizontal line that visually connected nested replies, simplifying the layout of threaded posts.
- This change enhances the clarity and organization of the post display, contributing to a more streamlined user experience within the NostrFeed module.
This commit is contained in:
padreug 2025-09-20 11:51:34 +02:00
parent 791bdbe3eb
commit ba590d5a4a

View file

@ -121,12 +121,6 @@ function getRideshareType(post: FeedPost): string {
:style="{ marginLeft: `${depth * 12}px` }" :style="{ marginLeft: `${depth * 12}px` }"
> >
<div class="p-3 relative"> <div class="p-3 relative">
<!-- Horizontal line from vertical line to content (for nested replies) -->
<div
v-if="depth > 0"
class="absolute left-0 top-7 w-2 h-px bg-border/40"
:style="{ marginLeft: `-${depth * 12}px` }"
/>
<!-- Post Header --> <!-- Post Header -->
<div class="flex items-center justify-between mb-2"> <div class="flex items-center justify-between mb-2">