fix(ChangePasswordView): Clear and cancel button is not blue
- use the proper `StatusFlatButton` as it was meant in the Figma design Fixes #13763
This commit is contained in:
parent
1ff424aea1
commit
63c3b756a5
|
@ -83,3 +83,5 @@ SplitView {
|
|||
}
|
||||
|
||||
// category: Views
|
||||
|
||||
// https://www.figma.com/file/d0G7m8X6ELjQlFOEKQpn1g/Profile-WIP?type=design&node-id=11-115317&mode=design&t=mBpxe2bJKzpseHGN-0
|
||||
|
|
|
@ -160,11 +160,9 @@ SettingsContentBase {
|
|||
|
||||
RowLayout {
|
||||
Layout.fillWidth: true
|
||||
StatusLinkText {
|
||||
StatusFlatButton {
|
||||
text: qsTr("Clear & cancel")
|
||||
onClicked: {
|
||||
choosePasswordForm.reset();
|
||||
}
|
||||
onClicked: choosePasswordForm.reset()
|
||||
}
|
||||
Item { Layout.fillWidth: true }
|
||||
StatusButton {
|
||||
|
|
Loading…
Reference in New Issue