mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
QML UI: CloudCredentials: better use of space
No idea why this was restricted to be so narrow. Also, making the font of the label smaller and lighter seems visually more pleasing. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
c043366b8f
commit
c004e31dc2
1 changed files with 5 additions and 1 deletions
|
@ -23,7 +23,7 @@ Item {
|
|||
|
||||
ColumnLayout {
|
||||
id: outerLayout
|
||||
width: loginWindow.width - loginWindow.leftPadding - loginWindow.rightPadding - 2 * Kirigami.Units.gridUnit
|
||||
width: loginWindow.width
|
||||
|
||||
function goToNext() {
|
||||
for (var i = 0; i < children.length; ++i)
|
||||
|
@ -53,6 +53,8 @@ Item {
|
|||
|
||||
Kirigami.Label {
|
||||
text: qsTr("Email")
|
||||
font.pointSize: subsurfaceTheme.smallPointSize
|
||||
color: subsurfaceTheme.secondaryTextColor
|
||||
}
|
||||
|
||||
TextField {
|
||||
|
@ -68,6 +70,8 @@ Item {
|
|||
|
||||
Kirigami.Label {
|
||||
text: qsTr("Password")
|
||||
font.pointSize: subsurfaceTheme.smallPointSize
|
||||
color: subsurfaceTheme.secondaryTextColor
|
||||
}
|
||||
|
||||
TextField {
|
||||
|
|
Loading…
Reference in a new issue