diff --git a/.config/quickshell/modules/common/widgets/ConfigSwitch.qml b/.config/quickshell/modules/common/widgets/ConfigSwitch.qml index 2d317a6be..01dda8a2a 100644 --- a/.config/quickshell/modules/common/widgets/ConfigSwitch.qml +++ b/.config/quickshell/modules/common/widgets/ConfigSwitch.qml @@ -7,6 +7,7 @@ import QtQuick.Controls RippleButton { id: root Layout.fillWidth: true + implicitHeight: contentItem.implicitHeight + 8 * 2 contentItem: RowLayout { spacing: 10 @@ -14,13 +15,13 @@ RippleButton { id: labelWidget Layout.fillWidth: true text: root.text - font.pixelSize: Appearance.font.pixelSize.normal + font.pixelSize: Appearance.font.pixelSize.small color: Appearance.colors.colOnSecondaryContainer } StyledSwitch { id: switchWidget down: root.down - scale: 0.75 + scale: 0.6 Layout.fillWidth: false checked: root.checked onClicked: root.clicked()