feat: US-020 - Scale TopBar and SubNav

This commit is contained in:
2026-02-14 20:21:05 +00:00
parent 645088bbc1
commit a7537083e6
4 changed files with 38 additions and 16 deletions
+2 -2
View File
@@ -58,7 +58,7 @@ export function SubNav({ activeSection, onSectionClick }: SubNavProps) {
aria-current={isActive ? 'true' : undefined}
style={{
position: 'relative',
fontSize: '13px',
fontSize: '14px',
fontWeight: 500,
color: isActive ? 'var(--accent)' : 'var(--text-secondary)',
background: 'none',
@@ -68,7 +68,7 @@ export function SubNav({ activeSection, onSectionClick }: SubNavProps) {
transition: 'color 200ms ease-out',
fontFamily: 'var(--font-ui)',
flexShrink: 0,
minHeight: '36px',
minHeight: '42px',
display: 'flex',
alignItems: 'center',
}}