diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-04-02 13:45:16 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-04-02 13:45:16 +0800 |
commit | fc100ff4832d4e8e8765201176eb0d5c4fedea97 (patch) | |
tree | b1ed58472472f9051a44e56dcbe8aa1a111a06f1 /Shop | |
parent | 680f327d67558f97505cd0c0f9c95765f143d763 (diff) |
Fix most of remaining checkout colours
Diffstat (limited to 'Shop')
-rw-r--r-- | Shop/Checkout.ui.qml | 1 | ||||
-rw-r--r-- | Shop/Checkout/RightSidebar/OrderSummary.ui.qml | 19 |
2 files changed, 11 insertions, 9 deletions
diff --git a/Shop/Checkout.ui.qml b/Shop/Checkout.ui.qml index aaef97c..84e225c 100644 --- a/Shop/Checkout.ui.qml +++ b/Shop/Checkout.ui.qml @@ -83,6 +83,7 @@ Flickable { implicitHeight: orderSummary.height Layout.margins: 16 radius: 8 + color: Eduport.bsCardBg OrderSummary { id: orderSummary diff --git a/Shop/Checkout/RightSidebar/OrderSummary.ui.qml b/Shop/Checkout/RightSidebar/OrderSummary.ui.qml index 9d59d8b..7564106 100644 --- a/Shop/Checkout/RightSidebar/OrderSummary.ui.qml +++ b/Shop/Checkout/RightSidebar/OrderSummary.ui.qml @@ -31,19 +31,20 @@ ColumnLayout { implicitHeight: codeLabel.implicitHeight + codeValue.implicitHeight - Label { + Body { id: codeLabel text: qsTr("Transaction code") - font.pointSize: 14 - font.family: "roboto" anchors.verticalCenter: parent.verticalCenter } - Label { + H6 { id: codeValue text: "AB12365E" - font.pointSize: 14 - font.family: "roboto" + font { + family: Eduport.fwLightFont.family + weight: Eduport.fwLightFont.weight + pointSize: Eduport.h6FontSize + } anchors { right: parent.right verticalCenter: parent.verticalCenter @@ -138,9 +139,9 @@ ColumnLayout { Item { Layout.fillWidth: true implicitHeight: priceLabel.implicitHeight - + priceValue.implicitHeight + + priceValue.implicitHeight - Label { + H6 { id: priceLabel text: qsTr("Original Price") font { @@ -166,7 +167,7 @@ ColumnLayout { implicitHeight: discountLabel.implicitHeight + discountValue.implicitHeight - Label { + H6 { id: discountLabel text: qsTr("Coupon Discount") font { |