fix text size

This commit is contained in:
vchikalkin 2025-02-18 22:36:41 +03:00
parent d56102d456
commit 3b0dd008f6
5 changed files with 5 additions and 5 deletions

View File

@ -8,7 +8,7 @@ export default function ContactsPage() {
<ContactsFilterProvider>
<Card>
<div className="flex flex-row items-center justify-between space-x-4 p-4">
<h1 className="text-lg font-bold">Контакты</h1>
<h1 className="font-bold">Контакты</h1>
<ContactsFilter />
</div>
<div className="p-4 pt-0">

View File

@ -5,7 +5,7 @@ type Props = { title: string | undefined };
export function PageHeader(props: Readonly<Props>) {
return (
<div className="sticky top-0 z-50 flex h-12 items-center rounded-b-lg bg-transparent px-2 text-lg font-bold tracking-wide backdrop-blur-md">
<div className="sticky top-0 z-50 flex h-12 items-center rounded-b-lg bg-transparent px-2 font-bold tracking-wide backdrop-blur-md">
<BackButton />
{props.title}
</div>

View File

@ -5,7 +5,7 @@ type Props = {
export function ProfileCardHeader({ title }: Readonly<Props>) {
return (
<div className="flex flex-row justify-between">
<h1 className="text-lg font-bold text-primary">{title}</h1>
<h1 className="font-bold text-primary">{title}</h1>
<div />
</div>
);

View File

@ -13,7 +13,7 @@ export function LinkButton({ description, href, text, visible }: Props) {
return (
<Link href={href} rel="noopener noreferrer">
<div className="flex w-full flex-col rounded-2xl bg-background p-4 px-6 shadow-lg backdrop-blur-2xl dark:bg-primary/5">
<h2 className="text-lg font-bold text-foreground">{text}</h2>
<h2 className="font-bold text-foreground">{text}</h2>
<span className="mt-1 text-sm text-muted-foreground">{description}</span>
</div>
</Link>

View File

@ -15,7 +15,7 @@ export function SlotOrdersList({
return (
<div className={cn('bg-transparent p-4', className)}>
<h1 className="mb-2 text-lg font-bold">Записи</h1>
<h1 className="mb-2 font-bold">Записи</h1>
{slot?.orders.map((order) => {
return order && <OrderCard key={order?.documentId} {...order} />;
})}