fix: add shadow to chat input elements on mobile for visual consistency

Fix alignment of settings radio options when no description is present
This commit is contained in:
Bohdan Triapitsyn
2026-07-18 00:56:32 +03:00
parent 2af5cd39d1
commit 72a60f93fd
2 changed files with 5 additions and 4 deletions
@@ -450,7 +450,8 @@ export const SettingsRadioOption: React.FC<SettingsRadioOptionProps> = ({
return (
<div
className={cn(
'flex cursor-pointer items-start gap-2 py-0.5',
'flex cursor-pointer gap-2 py-0.5',
description != null ? 'items-start' : 'items-center',
disabled && 'cursor-not-allowed opacity-60',
className,
)}