diff --git a/.config/quickshell/ii/modules/common/widgets/Toolbar.qml b/.config/quickshell/ii/modules/common/widgets/Toolbar.qml index 25a2665c4..9263ffb63 100644 --- a/.config/quickshell/ii/modules/common/widgets/Toolbar.qml +++ b/.config/quickshell/ii/modules/common/widgets/Toolbar.qml @@ -10,7 +10,7 @@ import qs.modules.common.widgets Item { id: root - property real padding: 6 + property real padding: 8 property alias colBackground: background.color default property alias data: toolbarLayout.data implicitWidth: background.implicitWidth @@ -30,6 +30,7 @@ Item { RowLayout { id: toolbarLayout + spacing: 4 anchors { fill: parent margins: root.padding diff --git a/.config/quickshell/ii/modules/common/widgets/ToolbarButton.qml b/.config/quickshell/ii/modules/common/widgets/ToolbarButton.qml index 286c4edba..04b3f5f3b 100644 --- a/.config/quickshell/ii/modules/common/widgets/ToolbarButton.qml +++ b/.config/quickshell/ii/modules/common/widgets/ToolbarButton.qml @@ -4,7 +4,5 @@ import qs.modules.common RippleButton { Layout.fillHeight: true - Layout.topMargin: 2 - Layout.bottomMargin: 2 buttonRadius: Appearance.rounding.full } diff --git a/.config/quickshell/ii/modules/common/widgets/ToolbarTextField.qml b/.config/quickshell/ii/modules/common/widgets/ToolbarTextField.qml index fea574e96..bab455ec4 100644 --- a/.config/quickshell/ii/modules/common/widgets/ToolbarTextField.qml +++ b/.config/quickshell/ii/modules/common/widgets/ToolbarTextField.qml @@ -10,8 +10,6 @@ TextField { property alias colBackground: background.color Layout.fillHeight: true - Layout.topMargin: 2 - Layout.bottomMargin: 2 implicitWidth: 200 padding: 10