diff options
| -rw-r--r-- | OrderSummary.ui.qml | 6 | 
1 files changed, 4 insertions, 2 deletions
diff --git a/OrderSummary.ui.qml b/OrderSummary.ui.qml index b503401..2fcfe7a 100644 --- a/OrderSummary.ui.qml +++ b/OrderSummary.ui.qml @@ -41,9 +41,10 @@ ColumnLayout {  				}  				RowLayout {  					Rectangle { -						color: "#f5f7f9" +						color: "transparent"  						radius: 8 -						border.width: 0 +						border.width: 1 +						border.color: "#f5f7f9"  						Layout.fillWidth: true  						implicitHeight: 40  						RowLayout { @@ -51,6 +52,7 @@ ColumnLayout {  							TextField {  								id: couponCode  								placeholderText: qsTr("Coupon code") +								  								Layout.fillWidth: true  								font.pixelSize: 16  								font.family: "roboto"  |