mirror of
https://github.com/LukeHagar/dokploy.git
synced 2025-12-06 12:27:49 +00:00
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:
@@ -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"
|
||||
|
||||
@@ -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 ? (
|
||||
|
||||
@@ -265,7 +265,7 @@ export const CreateServer = ({ stepper }: Props) => {
|
||||
/>
|
||||
</form>
|
||||
|
||||
<DialogFooter className="pt-5">
|
||||
<DialogFooter>
|
||||
<Button
|
||||
isLoading={form.formState.isSubmitting}
|
||||
disabled={!canCreateMoreServers}
|
||||
|
||||
Reference in New Issue
Block a user