fix: desktop vertical alignment regression and touch target sizing

- SettingsTableRow: use max-lg:self-end instead of self-end to prevent
  bottom-aligning controls on desktop (self-end overrides items-center)
- QuickToggles: add min-h-[44px] matching Toggle component pattern
This commit is contained in:
Fringg
2026-03-29 03:22:45 +03:00
parent e004d8103b
commit 3e6c0212a6
2 changed files with 2 additions and 2 deletions

View File

@@ -113,7 +113,7 @@ export function SettingsTableRow({
<div
className={cn(
'flex items-center gap-2',
isLongValue ? 'w-full' : 'self-end lg:flex-shrink-0',
isLongValue ? 'w-full' : 'max-lg:self-end lg:flex-shrink-0',
)}
>
{setting.read_only ? (