diff --git a/app/components/ui/feed.tsx b/app/components/ui/feed.tsx
index 116c9c31..0d57c718 100644
--- a/app/components/ui/feed.tsx
+++ b/app/components/ui/feed.tsx
@@ -3,13 +3,17 @@ import { type Post } from '#app/db/types.ts'
export function Feed({ posts }: Post[]) {
return (
-
- {posts.map((post) => (
- -
-
-
- ))}
-
+
+
+ {posts.map((post) => (
+ -
+
+
+ ))}
+
+
);
}
diff --git a/app/components/ui/post.tsx b/app/components/ui/post.tsx
index 93385113..f9fe604f 100644
--- a/app/components/ui/post.tsx
+++ b/app/components/ui/post.tsx
@@ -25,9 +25,9 @@ export function PostDetails({ post, note }: PostProps) {
export function PostTeaser({ post }: Post) {
return (
-
+
-
+
@@ -47,9 +47,9 @@ export function NoteAttachment({ note }: { note: Post }) {
export function VoteButtons() {
return (
-
-
-
+
+
+
)
}