fix(@onboarding): Add more height to the textarea

fixes #4364
This commit is contained in:
Anthony Laibe 2022-01-06 13:50:25 +01:00 committed by Anthony Laibe
parent 6c4fab1a20
commit a911e4f512
2 changed files with 3 additions and 2 deletions

View File

@ -27,7 +27,8 @@ ModalPopup {
SeedPhraseTextArea {
id: seedPhraseTextArea
anchors.top: parent.top
anchors.topMargin: 40
anchors.topMargin: 20
anchors.bottomMargin: 20
width: parent.width
hideRectangle: true

View File

@ -38,7 +38,7 @@ Item {
StyledTextArea {
id: mnemonicTextField
customHeight: 100
customHeight: textField.implicitHeight >= 150 ? 150 : textField.implicitHeight + 30
hideRectangle: root.hideRectangle
anchors.top: parent.top
anchors.left: parent.left