diff options
Diffstat (limited to 'CheckoutFlickable.ui.qml')
-rw-r--r-- | CheckoutFlickable.ui.qml | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/CheckoutFlickable.ui.qml b/CheckoutFlickable.ui.qml index 8c93280..9b59394 100644 --- a/CheckoutFlickable.ui.qml +++ b/CheckoutFlickable.ui.qml @@ -322,12 +322,20 @@ Flickable { ColumnLayout { - Frame { + Rectangle { + implicitHeight: paymentCard.height + Layout.margins:16 Layout.fillWidth: true + border.width: 1 + radius: 8 + border.color: "#4d000000" ColumnLayout { - anchors.fill: parent - + id: paymentCard + anchors { + left: parent.left + right: parent.right + } Label { text: qsTr("Credit or Debit Card") font.pointSize: 16 |