From 3b5a951431df87df97fd946d8858ce3352c6d6bd Mon Sep 17 00:00:00 2001 From: bbedward Date: Fri, 31 Oct 2025 10:08:18 -0400 Subject: [PATCH] confirm modal: spacing adjustment --- Modals/Common/ConfirmModal.qml | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/Modals/Common/ConfirmModal.qml b/Modals/Common/ConfirmModal.qml index c569d601..f9d29272 100644 --- a/Modals/Common/ConfirmModal.qml +++ b/Modals/Common/ConfirmModal.qml @@ -165,10 +165,10 @@ DankModal { anchors.left: parent.left anchors.right: parent.right anchors.top: parent.top - anchors.leftMargin: Theme.spacingM - anchors.rightMargin: Theme.spacingM - anchors.topMargin: Theme.spacingM - spacing: Theme.spacingM + anchors.leftMargin: Theme.spacingL + anchors.rightMargin: Theme.spacingL + anchors.topMargin: Theme.spacingL + spacing: 0 StyledText { text: confirmTitle @@ -179,6 +179,11 @@ DankModal { horizontalAlignment: Text.AlignHCenter } + Item { + width: 1 + height: Theme.spacingL + } + StyledText { text: confirmMessage font.pixelSize: Theme.fontSizeMedium @@ -189,7 +194,8 @@ DankModal { } Item { - height: Theme.spacingS + width: 1 + height: Theme.spacingL * 1.5 } Row { @@ -271,6 +277,11 @@ DankModal { } } } + + Item { + width: 1 + height: Theme.spacingL + } } } }