fix: reduce font size for mini skill card titles to prevent wrapping

Skill names like 'Three-digit with frequent borrowing' were wrapping to
multiple lines. Reduced title font size from 0.8125rem to 0.75rem to fit
longer skill names on a single line in the mini cards.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Thomas Hallock 2025-11-10 14:18:36 -06:00
parent ee90182ff2
commit 833b481ebb
1 changed files with 2 additions and 2 deletions

View File

@ -316,7 +316,7 @@ export function MasteryModePanel({ formState, onChange, isDark = false }: Master
>
<h4
className={css({
fontSize: '0.8125rem',
fontSize: '0.75rem',
fontWeight: '600',
color: isDark ? 'white' : 'gray.900',
lineHeight: '1.2',
@ -475,7 +475,7 @@ export function MasteryModePanel({ formState, onChange, isDark = false }: Master
>
<h4
className={css({
fontSize: '0.8125rem',
fontSize: '0.75rem',
fontWeight: '600',
color: isDark ? 'white' : 'gray.900',
lineHeight: '1.2',