diff --git a/client/src/components/adjacent_feed.tsx b/client/src/components/adjacent_feed.tsx index 57e68f8f..4f542e03 100644 --- a/client/src/components/adjacent_feed.tsx +++ b/client/src/components/adjacent_feed.tsx @@ -45,7 +45,7 @@ export function AdjacentSection({id, setError}: { id: string, setError: (error: export function AdjacentCard({data, type}: { data: AdjacentFeed | null | undefined, type: "previous" | "next" }) { const direction = type === "previous" ? "text-start" : "text-end" - const radius = type === "previous" ? "rounded-l-2xl" : "rounded-r-2xl" + const radius = type === "previous" ? "rounded-t-2xl sm:rounded-none sm:rounded-l-2xl" : "rounded-b-2xl sm:rounded-none sm:rounded-r-2xl" const {t} = useTranslation() if (!data) { return (
diff --git a/client/src/page/feed.tsx b/client/src/page/feed.tsx index 00e69f53..a9c918c8 100644 --- a/client/src/page/feed.tsx +++ b/client/src/page/feed.tsx @@ -305,7 +305,7 @@ export function FeedPage({ id, TOC, clean }: { id: string, TOC: () => JSX.Elemen
@@ -408,7 +408,7 @@ function CommentInput({ }); } return ( -
+