From 20e5a3c104a5bcc6f7253edb1ef30f5a41f6a235 Mon Sep 17 00:00:00 2001 From: alemi Date: Mon, 10 Jun 2024 21:51:27 +0200 Subject: [PATCH] fix(web): actor summary, consistency --- web/index.html | 1 + web/src/actors/posts.rs | 2 +- web/src/actors/view.rs | 1 + web/src/components/timeline.rs | 2 +- 4 files changed, 4 insertions(+), 2 deletions(-) diff --git a/web/index.html b/web/index.html index f1c05b8..d37d447 100644 --- a/web/index.html +++ b/web/index.html @@ -166,6 +166,7 @@ div.overlap { position: relative; bottom: 3em; + margin-bottom: -3em; } img { max-width: 100%; diff --git a/web/src/actors/posts.rs b/web/src/actors/posts.rs index 2d15d7a..004d333 100644 --- a/web/src/actors/posts.rs +++ b/web/src/actors/posts.rs @@ -14,7 +14,7 @@ pub fn ActorPosts() -> impl IntoView { } }).track(); view! { - "🖂"" posts" + "🖂"" "posts } } diff --git a/web/src/actors/view.rs b/web/src/actors/view.rs index 5d695e9..29726da 100644 --- a/web/src/actors/view.rs +++ b/web/src/actors/view.rs @@ -97,6 +97,7 @@ pub fn ActorHeader() -> impl IntoView { }} +

}.into_view() diff --git a/web/src/components/timeline.rs b/web/src/components/timeline.rs index 05dafc2..122e2e5 100644 --- a/web/src/components/timeline.rs +++ b/web/src/components/timeline.rs @@ -191,7 +191,7 @@ pub fn TimelineFeed(tl: Timeline) -> impl IntoView { on:click=move |_| tl.more(auth) > {move || if tl.loading.get() { - view! { "loading" }.into_view() + view! { "loading " }.into_view() } else { "more".into_view() }}