From 88efbe4666388190542e3ff1c4eb4449d829b68d Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Tue, 24 Feb 2026 23:25:04 +0100 Subject: [PATCH] Increase subtitle font size --- web/components/widgets/profile-subtitle.tsx | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/web/components/widgets/profile-subtitle.tsx b/web/components/widgets/profile-subtitle.tsx index 19b0fc4f..84744ebf 100644 --- a/web/components/widgets/profile-subtitle.tsx +++ b/web/components/widgets/profile-subtitle.tsx @@ -2,9 +2,5 @@ import clsx from 'clsx' export function Subtitle(props: {children: string; className?: string}) { const {children: text, className} = props - return ( -

- {text} -

- ) + return

{text}

}