Surely there's a better way to do this, yeah?
This commit is contained in:
2025-01-12 03:18:18 -06:00
parent 7f9b671d90
commit 70128628ec

View File

@@ -96,14 +96,16 @@
color: "#ebdbb2" color: "#ebdbb2"
width: parent.width width: parent.width
text: textConstants.userName text: textConstants.userName
font.pixelSize: 12 font.family: "IBM Plex Sans"
font.pixelSize: 13
} }
TextBox { TextBox {
id: name id: name
width: parent.width; height: 30 width: parent.width; height: 30
text: userModel.lastUser text: userModel.lastUser
font.pixelSize: 14 font.family: "IBM Plex Sans"
font.pixelSize: 13
KeyNavigation.backtab: rebootButton; KeyNavigation.tab: password KeyNavigation.backtab: rebootButton; KeyNavigation.tab: password
@@ -125,13 +127,15 @@
color: "#ebdbb2" color: "#ebdbb2"
width: parent.width width: parent.width
text: textConstants.password text: textConstants.password
font.pixelSize: 12 font.family: "IBM Plex Sans"
font.pixelSize: 13
} }
PasswordBox { PasswordBox {
id: password id: password
width: parent.width; height: 30 width: parent.width; height: 30
font.pixelSize: 14 font.family: "IBM Plex Sans"
font.pixelSize: 13
KeyNavigation.backtab: name; KeyNavigation.tab: session KeyNavigation.backtab: name; KeyNavigation.tab: session
@@ -154,13 +158,15 @@
width: parent.width width: parent.width
text: textConstants.session text: textConstants.session
wrapMode: TextEdit.WordWrap wrapMode: TextEdit.WordWrap
font.pixelSize: 12 font.family: "IBM Plex Sans"
font.pixelSize: 13
} }
ComboBox { ComboBox {
id: session id: session
width: parent.width; height: 30 width: parent.width; height: 30
font.pixelSize: 14 font.family: "IBM Plex Sans"
font.pixelSize: 13
arrowIcon: Qt.resolvedUrl("angle-down.png") arrowIcon: Qt.resolvedUrl("angle-down.png")
@@ -179,7 +185,8 @@
color: "#ebdbb2" color: "#ebdbb2"
anchors.horizontalCenter: parent.horizontalCenter anchors.horizontalCenter: parent.horizontalCenter
text: textConstants.prompt text: textConstants.prompt
font.pixelSize: 10 font.family: "IBM Plex Sans"
font.pixelSize: 13
} }
} }