* font changes to better match figma

* fix alignment in debug view
This commit is contained in:
Josh Hawkins
2025-10-09 06:23:03 -06:00
committed by GitHub
parent c61bb8f8ae
commit f4e7549311
10 changed files with 51 additions and 77 deletions
+1 -1
View File
@@ -222,7 +222,7 @@ export function MobilePageHeader({
type MobilePageTitleProps = React.HTMLAttributes<HTMLHeadingElement>;
export function MobilePageTitle({ className, ...props }: MobilePageTitleProps) {
return <h2 className={cn("text-lg font-semibold", className)} {...props} />;
return <h2 className={cn("text-lg", className)} {...props} />;
}
type MobilePageDescriptionProps = React.HTMLAttributes<HTMLParagraphElement>;