fix settings footer buttons break point on mobile

This commit is contained in:
miloschwartz
2025-12-08 10:38:29 -05:00
parent f9b15b9156
commit 0234234108
4 changed files with 60 additions and 70 deletions

View File

@@ -66,7 +66,7 @@ export function SettingsSectionFooter({
children: React.ReactNode;
}) {
return (
<div className="flex justify-end space-x-2 mt-auto pt-6">
<div className="flex flex-col md:flex-row justify-end space-y-2 md:space-y-0 md:space-x-2 mt-auto pt-6">
{children}
</div>
);