diff --git a/web/index.html b/web/index.html
index f1c05b83..d37d447a 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 2d15d7ac..004d3337 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 5d695e9e..29726da1 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 05dafc21..122e2e57 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() }}