v3: fixed journal view not scrolling, fixed some user profile layout bugs, increase thumbnail size on the index
All checks were successful
Build and Publish Docker Image / build-and-push (push) Successful in 43s

This commit is contained in:
khannurien
2026-06-28 05:27:49 +00:00
parent bcbb8f5583
commit b567e390d9
10 changed files with 220 additions and 215 deletions

View File

@@ -3,13 +3,12 @@ import { AppHeader } from "./AppHeader.tsx";
interface PageShellProps {
children: ReactNode;
feed?: ReactNode;
centered?: boolean;
centerSlot?: ReactNode;
}
export function PageShell(
{ children, feed, centered = false, centerSlot }: PageShellProps,
{ children, centered = false, centerSlot }: PageShellProps,
) {
return (
<div className="page-shell">
@@ -19,7 +18,6 @@ export function PageShell(
>
{children}
</main>
{feed}
</div>
);
}