diff --git a/apps/yaak-client/components/core/SettingRow.tsx b/apps/yaak-client/components/core/SettingRow.tsx index eb24556c..afc3e524 100644 --- a/apps/yaak-client/components/core/SettingRow.tsx +++ b/apps/yaak-client/components/core/SettingRow.tsx @@ -67,23 +67,34 @@ export function SettingRow({ aria-disabled={disabled || undefined} className={classNames( className, - "grid grid-cols-[minmax(0,1fr)_auto] items-center gap-6 border-b border-border-subtle py-4", + "@container border-b border-border-subtle py-4", disabled && "opacity-disabled", )} > -
-
{title}
- {description != null && ( -
{description}
+
-
- {children} + > +
+
{title}
+ {description != null && ( +
{description}
+ )} +
+
+ {children} +
); } - export function SettingValue({ actions, className,