style(ui): polished typography and switched webfonts to woff2

- Switched bundled browser font references from TTF to WOFF2 and enabled optical sizing.
- Refined heading hierarchy, text wrapping, mobile controls, and numeric alignment.
- Polished notification badges, button underlines, and ligature rendering.
This commit is contained in:
ephraimduncan
2026-08-19 09:41:41 +00:00
parent d42254ff52
commit 66f8dc7e8a
18 changed files with 35 additions and 29 deletions
@@ -13,10 +13,12 @@ export const SettingsHeader = ({ children, title, subtitle, className, hideDivid
return (
<>
<div className={cn('mb-4 flex flex-row items-center justify-between', className)}>
<div>
<h2 className="font-bold text-xl">{title}</h2>
<div className="min-w-0">
<h2 className="font-bold text-xl leading-tight [text-wrap:balance]">{title}</h2>
<p className="text-muted-foreground text-sm md:mt-2">{subtitle}</p>
<p className="mt-1 max-w-[65ch] text-muted-foreground text-sm leading-normal [overflow-wrap:break-word] [text-wrap:pretty] md:mt-2">
{subtitle}
</p>
</div>
{children}