summaryrefslogtreecommitdiff
path: root/Account.ui.qml
blob: 37f18477e0fcf8d36911a9730364d7f01626fa1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import QtQuick 2.15
import QtQuick.Controls 2.15

Rectangle {
	color: "#121212"
	border.color: "#00000000"

	TextInput {
		id: addCustomer
		height: 56
		color: "#deffffff"
		text: "Add Customer"
		anchors.left: parent.left
		anchors.right: parent.right
		anchors.top: parent.top
		font.pixelSize: 20
		verticalAlignment: Text.AlignVCenter
		font.family: "Roboto Mono"
		selectionColor: "#ffffff"
		anchors.rightMargin: 16
		anchors.leftMargin: 16
		anchors.topMargin: 16
	}

	TextInput {
		id: addProduct
		height: 56
		color: "#deffffff"
		text: "Add Product"
		anchors.left: parent.left
		anchors.right: parent.right
		anchors.top: addCustomer.bottom
		font.pixelSize: 20
		verticalAlignment: Text.AlignVCenter
		selectionColor: "#ffffff"
		anchors.rightMargin: 16
		anchors.leftMargin: 16
		font.family: "Roboto Mono"
		anchors.topMargin: 16
	}
}