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:
Lukáš Tinkl 2024-05-02 12:43:37 +02:00 committed by Lukáš Tinkl
parent 1ff424aea1
commit 63c3b756a5
2 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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 {