This commit is contained in:
Gaelle Braud 2024-08-12 17:02:35 +02:00
parent fda2f0557b
commit b2d75517e8
2 changed files with 3 additions and 2 deletions

View file

@ -16,8 +16,8 @@ Control.Button {
property int textWeight: 600 * DefaultStyle.dp
property int radius: 48 * DefaultStyle.dp
property color textColor: DefaultStyle.grey_0
property bool underline: mainItem.activeFocus || containsMouse
property bool shadowEnabled: mainItem.activeFocus || containsMouse
property bool underline: activeFocus || containsMouse
property bool shadowEnabled: enabled && (activeFocus || containsMouse)
property var contentImageColor
property alias containsMouse: mouseArea.containsMouse
hoverEnabled: true

View file

@ -362,6 +362,7 @@ AbstractMainPage {
anchors.fill: parent
spacing: 0
Section {
Layout.topMargin: 58 * DefaultStyle.dp
content: RowLayout {
spacing: 10 * DefaultStyle.dp
Button {