More spacing fixes

This commit is contained in:
Ly-sec 2025-09-13 19:28:44 +02:00
parent de72236fe5
commit 9dfac69e9e
6 changed files with 14 additions and 27 deletions

View file

@ -92,10 +92,10 @@ Variants {
// Top section (left widgets)
Column {
spacing: Style.marginS * root.scaling
spacing: Style.marginXS * root.scaling
anchors.horizontalCenter: parent.horizontalCenter
anchors.top: parent.top
anchors.topMargin: Style.marginM * root.scaling
anchors.topMargin: Style.marginS * root.scaling
width: parent.width
Repeater {
@ -117,7 +117,7 @@ Variants {
// Center section (center widgets)
Column {
spacing: Style.marginS * root.scaling
spacing: Style.marginXS * root.scaling
anchors.horizontalCenter: parent.horizontalCenter
anchors.verticalCenter: parent.verticalCenter
width: parent.width
@ -141,10 +141,10 @@ Variants {
// Bottom section (right widgets)
Column {
spacing: Style.marginS * root.scaling
spacing: Style.marginXS * root.scaling
anchors.horizontalCenter: parent.horizontalCenter
anchors.bottom: parent.bottom
anchors.bottomMargin: Style.marginM * root.scaling
anchors.bottomMargin: Style.marginS * root.scaling
width: parent.width
Repeater {
@ -249,4 +249,4 @@ Variants {
}
}
}
}
}