mirror of
https://github.com/luneko/SweetTokyoNight.git
synced 2025-12-13 15:29:53 +01:00
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:
@@ -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
|
||||
|
||||
@@ -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
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user