From f9e55c8f8d525d604cffc76867e3bf9220583b13 Mon Sep 17 00:00:00 2001 From: LemmyCook Date: Mon, 8 Sep 2025 01:03:58 -0400 Subject: [PATCH] Workspace: removed extra transparent padding around. --- Modules/Bar/Widgets/Workspace.qml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Modules/Bar/Widgets/Workspace.qml b/Modules/Bar/Widgets/Workspace.qml index 1a629dc..c51c469 100644 --- a/Modules/Bar/Widgets/Workspace.qml +++ b/Modules/Bar/Widgets/Workspace.qml @@ -42,8 +42,8 @@ Item { property bool effectsActive: false property color effectColor: Color.mPrimary - property int horizontalPadding: Math.round(16 * scaling) - property int spacingBetweenPills: Math.round(8 * scaling) + property int horizontalPadding: Math.round(Style.marginS * scaling) + property int spacingBetweenPills: Math.round(Style.marginXS * scaling) signal workspaceChanged(int workspaceId, color accentColor) @@ -144,7 +144,7 @@ Item { Rectangle { id: workspaceBackground - width: parent.width - Style.marginS * scaling * 2 + width: parent.width height: Math.round(Style.capsuleHeight * scaling) radius: Math.round(Style.radiusM * scaling)