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