mirror of
https://github.com/LukeHagar/dokploy.git
synced 2025-12-09 12:27:48 +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>
|
</form>
|
||||||
|
|
||||||
<DialogFooter className="flex w-full flex-row !justify-end pt-3">
|
<DialogFooter className="flex w-full flex-row !justify-end">
|
||||||
<Button
|
<Button
|
||||||
isLoading={isLoading}
|
isLoading={isLoading}
|
||||||
form="hook-form-add-certificate"
|
form="hook-form-add-certificate"
|
||||||
|
|||||||
@@ -359,7 +359,7 @@ export const HandleDestinations = ({ destinationId }: Props) => {
|
|||||||
<DialogFooter
|
<DialogFooter
|
||||||
className={cn(
|
className={cn(
|
||||||
isCloud ? "!flex-col" : "flex-row",
|
isCloud ? "!flex-col" : "flex-row",
|
||||||
"flex w-full !justify-between pt-3 gap-4",
|
"flex w-full !justify-between gap-4",
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
{isCloud ? (
|
{isCloud ? (
|
||||||
|
|||||||
@@ -265,7 +265,7 @@ export const CreateServer = ({ stepper }: Props) => {
|
|||||||
/>
|
/>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
<DialogFooter className="pt-5">
|
<DialogFooter>
|
||||||
<Button
|
<Button
|
||||||
isLoading={form.formState.isSubmitting}
|
isLoading={form.formState.isSubmitting}
|
||||||
disabled={!canCreateMoreServers}
|
disabled={!canCreateMoreServers}
|
||||||
|
|||||||
Reference in New Issue
Block a user