fix(StatusInputPage): updated input height leftovers (#804)
As part of https://github.com/status-im/status-desktop/issues/6637
This commit is contained in:
parent
e5ab0cd2a7
commit
64ec74117d
|
@ -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 {
|
||||
|
|
|
@ -28,7 +28,7 @@ Item {
|
|||
width: editText.width
|
||||
placeholderText: ""
|
||||
input.text: msgText
|
||||
input.implicitHeight: 40
|
||||
maximumHeight: 40
|
||||
}
|
||||
}
|
||||
RowLayout {
|
||||
|
|
Loading…
Reference in New Issue