mirror of
https://github.com/luneko/SweetTokyoNight.git
synced 2025-12-15 16:09: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 {
|
contentItem: Text {
|
||||||
text: loginButton.text
|
text: loginButton.text
|
||||||
font: loginButton.font
|
font: loginButton.font
|
||||||
opacity: enabled ? 1.0 : 0.3
|
opacity: enabled ? 1.0 : 0.8
|
||||||
color: "#ffffff"
|
color: "#ffffff"
|
||||||
horizontalAlignment: Text.AlignHCenter
|
horizontalAlignment: Text.AlignHCenter
|
||||||
verticalAlignment: Text.AlignVCenter
|
verticalAlignment: Text.AlignVCenter
|
||||||
@@ -120,8 +120,8 @@ SessionManagementScreen {
|
|||||||
|
|
||||||
background: Rectangle {
|
background: Rectangle {
|
||||||
id: buttonBackground
|
id: buttonBackground
|
||||||
width:30
|
height: parent.width
|
||||||
height: 270
|
width: height / 9
|
||||||
radius: width / 2
|
radius: width / 2
|
||||||
rotation: -90
|
rotation: -90
|
||||||
anchors.centerIn: parent
|
anchors.centerIn: parent
|
||||||
|
|||||||
@@ -12,10 +12,10 @@ TextField {
|
|||||||
color: "#1E2326"
|
color: "#1E2326"
|
||||||
opacity: 0.7
|
opacity: 0.7
|
||||||
radius: parent.width / 2
|
radius: parent.width / 2
|
||||||
height: 30
|
width: parent.width
|
||||||
width: 270
|
height: width / 9
|
||||||
border.width: 1
|
border.width: 1
|
||||||
border.color: "#121517"
|
border.color: "#121517"
|
||||||
anchors.centerIn: parent
|
anchors.centerIn: parent
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user