diff options
-rw-r--r-- | AccountForm.ui.qml | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/AccountForm.ui.qml b/AccountForm.ui.qml index 5e9ba01..8a41e0b 100644 --- a/AccountForm.ui.qml +++ b/AccountForm.ui.qml @@ -13,6 +13,7 @@ Rectangle { height: 56 color: "#deffffff" placeholderText: "Add Customer" + placeholderTextColor: "#99ffffff" anchors.left: parent.left anchors.right: parent.right anchors.top: parent.top @@ -30,6 +31,7 @@ Rectangle { height: 56 color: "#deffffff" placeholderText: "Add Product" + placeholderTextColor: "#99ffffff" anchors.left: parent.left anchors.right: parent.right anchors.top: addCustomer.bottom @@ -48,12 +50,15 @@ Rectangle { anchors.left: parent.left anchors.right: parent.right anchors.bottom: parent.bottom + flat: true font.capitalization: Font.MixedCase font.family: "Roboto Mono" anchors.rightMargin: 16 anchors.leftMargin: 16 anchors.bottomMargin: 16 - highlighted: true - Material.accent: Material.Grey + background: Rectangle { + implicitHeight: 30 + radius: 4 + } } } |