diff --git a/dots/.config/quickshell/ii/modules/common/widgets/ConfigSwitch.qml b/dots/.config/quickshell/ii/modules/common/widgets/ConfigSwitch.qml index 02e0eabad..53e6a27c0 100644 --- a/dots/.config/quickshell/ii/modules/common/widgets/ConfigSwitch.qml +++ b/dots/.config/quickshell/ii/modules/common/widgets/ConfigSwitch.qml @@ -34,7 +34,6 @@ RippleButton { StyledSwitch { id: switchWidget down: root.down - scale: 0.6 Layout.fillWidth: false checked: root.checked onClicked: root.clicked() diff --git a/dots/.config/quickshell/ii/modules/common/widgets/StyledSwitch.qml b/dots/.config/quickshell/ii/modules/common/widgets/StyledSwitch.qml index 56c1425d9..c701ff7cf 100644 --- a/dots/.config/quickshell/ii/modules/common/widgets/StyledSwitch.qml +++ b/dots/.config/quickshell/ii/modules/common/widgets/StyledSwitch.qml @@ -9,7 +9,7 @@ import Qt5Compat.GraphicalEffects */ Switch { id: root - property real scale: 0.6 // Default in m3 spec is huge af + property real scale: 0.75 // Default in m3 spec is huge af implicitHeight: 32 * root.scale implicitWidth: 52 * root.scale property color activeColor: Appearance?.colors.colPrimary ?? "#685496"