mirror of
https://github.com/chillpadclub/bedolaga-cabinet.git
synced 2026-07-30 02:23:47 +00:00
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:
@@ -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 ? (
|
||||
|
||||
Reference in New Issue
Block a user