diff options
author | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2023-02-01 16:05:40 +0700 |
---|---|---|
committer | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2023-02-01 16:05:40 +0700 |
commit | 8e2bc14877dcf59d6980c081f33a8a0880322419 (patch) | |
tree | c9ee9c7c425d09e8ba417e657ab06c0f93ba9dfd | |
parent | 80ce7e825188017cc75d3a47951aec929781c367 (diff) |
retouch coupon textField
-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" |