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
|
// 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 {
|
RowLayout {
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
StatusLinkText {
|
StatusFlatButton {
|
||||||
text: qsTr("Clear & cancel")
|
text: qsTr("Clear & cancel")
|
||||||
onClicked: {
|
onClicked: choosePasswordForm.reset()
|
||||||
choosePasswordForm.reset();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
Item { Layout.fillWidth: true }
|
Item { Layout.fillWidth: true }
|
||||||
StatusButton {
|
StatusButton {
|
||||||
|
|
Loading…
Reference in New Issue