fix: Button-Höhen angeglichen

- Help- und Logout-Button haben jetzt identische Styles
- Gleiche lineHeight, boxSizing und fontFamily für konsistente Höhe
- Beide Buttons verwenden inline-flex mit center alignment
This commit is contained in:
Hördle Bot
2025-12-04 01:14:01 +01:00
parent c250b5fff9
commit 5136c3add1

View File

@@ -819,6 +819,9 @@ export default function CuratorPageClient() {
display: 'inline-flex', display: 'inline-flex',
alignItems: 'center', alignItems: 'center',
gap: '0.25rem', gap: '0.25rem',
lineHeight: '1.5',
boxSizing: 'border-box',
fontFamily: 'inherit',
}} }}
> >
{tHelp('helpButton')} {tHelp('helpButton')}
@@ -833,6 +836,12 @@ export default function CuratorPageClient() {
border: 'none', border: 'none',
borderRadius: '0.375rem', borderRadius: '0.375rem',
cursor: 'pointer', cursor: 'pointer',
fontSize: '0.9rem',
display: 'inline-flex',
alignItems: 'center',
lineHeight: '1.5',
boxSizing: 'border-box',
fontFamily: 'inherit',
}} }}
> >
{t('logout')} {t('logout')}