style: font picker

This commit is contained in:
Maze Winther
2025-07-10 21:53:50 +02:00
parent 7ec9167aeb
commit 6c59fed5c0

View File

@ -25,7 +25,12 @@ export function FontPicker({
</SelectTrigger>
<SelectContent>
{FONT_OPTIONS.map((font) => (
<SelectItem key={font.value} value={font.value}>
<SelectItem
key={font.value}
value={font.value}
className="text-xs"
style={{ fontFamily: font.value }}
>
{font.label}
</SelectItem>
))}