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() }}