header: remove bottom margin

This commit is contained in:
vchikalkin 2025-02-01 15:03:32 +03:00
parent df851197a3
commit 1c4560fd2f

View File

@ -6,7 +6,7 @@ type Props = { title: string | undefined };
export function PageHeader(props: Readonly<Props>) {
return (
<div className="sticky top-0 z-50 mb-2 flex items-center rounded-b-lg bg-transparent p-2">
<div className="sticky top-0 z-50 flex items-center rounded-b-lg bg-transparent p-2">
<BackButton />
<PageTitle title={props.title} />
</div>