diff --git a/web/index.html b/web/index.html index cea2986..3d9d74b 100644 --- a/web/index.html +++ b/web/index.html @@ -260,6 +260,10 @@ color: unset; text-shadow: unset; } + div.context { + border-left: 1px solid var(--background-dim); + padding-left: 1px; + } diff --git a/web/src/components/timeline.rs b/web/src/components/timeline.rs index 227d082..7ae930d 100644 --- a/web/src/components/timeline.rs +++ b/web/src/components/timeline.rs @@ -108,9 +108,11 @@ pub fn TimelineRepliesRecursive(tl: Timeline, root: String) -> impl IntoView { _ => { let oid = object.id().unwrap_or_default().to_string(); view! { - -
- +
+ +
+ +
}.into_view() },