Fix spacing

This commit is contained in:
David Heinemeier Hansson
2026-05-15 19:06:14 +02:00
parent d6e8149580
commit 52817ec465
3 changed files with 5 additions and 5 deletions
@@ -1405,8 +1405,8 @@ Item {
component WorkspacesModule: GridLayout {
columns: root.vertical ? 1 : root.workspaceIds().length
columnSpacing: root.vertical ? 0 : 3
rowSpacing: root.vertical ? 3 : 0
columnSpacing: root.vertical ? 0 : 2
rowSpacing: root.vertical ? 2 : 0
Repeater {
model: root.workspaceIds()
@@ -1422,7 +1422,7 @@ Item {
opacity: occupied || modelData <= 5 || focused ? 1 : 0.5
horizontalMargin: 6
verticalPadding: 6
fixedWidth: root.vertical ? root.barSize : 24
fixedWidth: root.vertical ? root.barSize : 22
fixedHeight: root.barSize
onPressed: function() { root.focusWorkspace(modelData) }
}