diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2019-12-05 08:51:05 -0600 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2019-12-05 08:51:05 -0600 |
| commit | dafc47050aebe5de3e42cd375c144f48962c36fe (patch) | |
| tree | 1c7d6bfc96780c4271cf4af29e2252d6ee3cf791 | |
| parent | 0e65d8917207e27030c9d15d94e848cf628ed55c (diff) | |
| parent | 1c2920a33926e616a8e659c2b967f719f93e05f7 (diff) | |
| download | monzero-gui-dafc47050aebe5de3e42cd375c144f48962c36fe.tar.gz monzero-gui-dafc47050aebe5de3e42cd375c144f48962c36fe.tar.xz monzero-gui-dafc47050aebe5de3e42cd375c144f48962c36fe.zip | |
Merge pull request #2556
1c2920a WizardAskPassword: fix lock icon (selsta)
| -rw-r--r-- | wizard/WizardAskPassword.qml | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/wizard/WizardAskPassword.qml b/wizard/WizardAskPassword.qml index ed2a0ecb..c2a3e5c0 100644 --- a/wizard/WizardAskPassword.qml +++ b/wizard/WizardAskPassword.qml @@ -180,14 +180,15 @@ ColumnLayout { color: "transparent" MoneroComponents.Label { - fontSize: 20 + fontSize: 18 text: FontAwesome.lock opacity: 0.5 - fontFamily: FontAwesome.fontFamily + fontFamily: FontAwesome.fontFamilySolid + styleName: "Solid" anchors.right: parent.right - anchors.rightMargin: 15 + anchors.rightMargin: 10 anchors.verticalCenter: parent.verticalCenter - anchors.verticalCenterOffset: 3 + anchors.verticalCenterOffset: 1 } } } @@ -237,14 +238,15 @@ ColumnLayout { color: "transparent" MoneroComponents.Label { - fontSize: 20 + fontSize: 18 text: FontAwesome.lock opacity: 0.5 - fontFamily: FontAwesome.fontFamily + fontFamily: FontAwesome.fontFamilySolid + styleName: "Solid" anchors.right: parent.right - anchors.rightMargin: 15 + anchors.rightMargin: 10 anchors.verticalCenter: parent.verticalCenter - anchors.verticalCenterOffset: 3 + anchors.verticalCenterOffset: 1 } } } |
