fix(ui): improve DialogFooter layout in settings dialogs

- Update certificate management dialog footer styling
- Enhance destination settings dialog layout
- Improve notification settings dialog footer spacing
- Add responsive design improvements for server creation dialog

Ensures consistent footer behavior across settings panels.
This commit is contained in:
Jhon
2025-07-13 13:03:11 -03:00
parent baadba542f
commit b12c035527
4 changed files with 4 additions and 4 deletions

View File

@@ -222,7 +222,7 @@ export const AddCertificate = () => {
/>
</form>
<DialogFooter className="flex w-full flex-row !justify-end pt-3">
<DialogFooter className="flex w-full flex-row !justify-end">
<Button
isLoading={isLoading}
form="hook-form-add-certificate"

View File

@@ -359,7 +359,7 @@ export const HandleDestinations = ({ destinationId }: Props) => {
<DialogFooter
className={cn(
isCloud ? "!flex-col" : "flex-row",
"flex w-full !justify-between pt-3 gap-4",
"flex w-full !justify-between gap-4",
)}
>
{isCloud ? (

View File

@@ -265,7 +265,7 @@ export const CreateServer = ({ stepper }: Props) => {
/>
</form>
<DialogFooter className="pt-5">
<DialogFooter>
<Button
isLoading={form.formState.isSubmitting}
disabled={!canCreateMoreServers}