* 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 -4
View File
@@ -85,10 +85,7 @@ const DrawerTitle = React.forwardRef<
>(({ className, ...props }, ref) => (
<DrawerPrimitive.Title
ref={ref}
className={cn(
"text-lg font-semibold leading-none tracking-tight",
className,
)}
className={cn("text-lg font-semibold leading-none", className)}
{...props}
/>
));