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 + } } } }