Merge pull request #146 from abrahammurciano/nova

Fixed overflowing input text on high-res small screens (and clearer login text)
This commit is contained in:
Eliver L
2021-04-21 13:37:39 -05:00
committed by GitHub
2 changed files with 6 additions and 6 deletions

View File

@@ -111,7 +111,7 @@ SessionManagementScreen {
contentItem: Text {
text: loginButton.text
font: loginButton.font
opacity: enabled ? 1.0 : 0.3
opacity: enabled ? 1.0 : 0.8
color: "#ffffff"
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
@@ -120,8 +120,8 @@ SessionManagementScreen {
background: Rectangle {
id: buttonBackground
width:30
height: 270
height: parent.width
width: height / 9
radius: width / 2
rotation: -90
anchors.centerIn: parent

View File

@@ -12,10 +12,10 @@ TextField {
color: "#1E2326"
opacity: 0.7
radius: parent.width / 2
height: 30
width: 270
width: parent.width
height: width / 9
border.width: 1
border.color: "#121517"
anchors.centerIn: parent
}
}
}