fix(StatusInputPage): updated input height leftovers (#804)

As part of https://github.com/status-im/status-desktop/issues/6637
This commit is contained in:
Alexandra Betouni 2022-07-27 16:33:55 +03:00 committed by GitHub
parent e5ab0cd2a7
commit 64ec74117d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 3 deletions

View File

@ -107,7 +107,8 @@ Column {
label: "Label"
secondaryLabel: "secondary label"
placeholderText: "Placeholder"
input.implicitHeight: 56
minimumHeight: 56
maximumHeight: 56
}
StatusInput {
@ -162,7 +163,8 @@ Column {
StatusInput {
input.multiline: true
placeholderText: "Multiline with static height"
input.implicitHeight: 100
minimumHeight: 100
maximumHeight: 100
}
StatusInput {

View File

@ -28,7 +28,7 @@ Item {
width: editText.width
placeholderText: ""
input.text: msgText
input.implicitHeight: 40
maximumHeight: 40
}
}
RowLayout {