diff options
author | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2023-02-07 14:24:44 +0700 |
---|---|---|
committer | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2023-02-07 14:24:44 +0700 |
commit | b334c945ad47fe1eae7e284b118a00657cacf6db (patch) | |
tree | 87d638186bc1647fc8a46deeb17edccfc04daa30 /CheckoutFlickable.ui.qml | |
parent | 9e2dce7c4253f71ec49844e5f00dfc1c14b6fdb1 (diff) |
place order button
Diffstat (limited to 'CheckoutFlickable.ui.qml')
-rw-r--r-- | CheckoutFlickable.ui.qml | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/CheckoutFlickable.ui.qml b/CheckoutFlickable.ui.qml index aa93565..80e55ba 100644 --- a/CheckoutFlickable.ui.qml +++ b/CheckoutFlickable.ui.qml @@ -604,9 +604,25 @@ Flickable { Button { id: placeOrder - text: qsTr("Place Order") - font.pointSize: 15 + Layout.margins: 16 Layout.fillWidth: true + text: qsTr("Place Order") + font.pointSize: 14 + font.family: "roboto" + implicitHeight: 36 + contentItem: Text { + color: "#ffffff" + text: "Place order" + horizontalAlignment: Text.AlignHCenter + verticalAlignment: Text.AlignVCenter + font.weight: Font.Medium + font.family: "Roboto" + font.pointSize: 14 + } + background: Rectangle { + color: "#0cbc87" + radius: 8 + } } } } |