Skip to content

Commit b9e744b

Browse files
committed
lockscreen: fix possible scaling issues
1 parent 57078cd commit b9e744b

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

lockscreen/Lockscreen.qml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ Item {
66

77
Item {
88
anchors.centerIn: parent
9-
scale: 2
109

1110
TextField {
1211
id: entryBox
1312
anchors.centerIn: parent
14-
width: 300
13+
width: 600
14+
font.pointSize: 24
1515

1616
enabled: context.status != AuthContext.Status.Authenticating
1717
focus: true
@@ -32,11 +32,12 @@ Item {
3232
Text {
3333
id: status
3434
color: "white"
35+
font.pointSize: 24
3536

3637
anchors {
3738
horizontalCenter: entryBox.horizontalCenter
3839
top: entryBox.bottom
39-
topMargin: 20
40+
topMargin: 40
4041
}
4142

4243
text: {

0 commit comments

Comments
 (0)