controlcenter: correcting padding/margins on containers

This commit is contained in:
ATMDA 2025-11-17 13:34:29 -05:00
parent 7a0a9d6681
commit b1cc641849
3 changed files with 4 additions and 1 deletions

View file

@ -80,6 +80,7 @@ RowLayout {
}
Item {
id: leftAppearanceItem
Layout.preferredWidth: Math.floor(parent.width * 0.4)
Layout.minimumWidth: 420
Layout.fillHeight: true

View file

@ -169,7 +169,6 @@ RowLayout {
anchors.margins: Appearance.padding.large + Appearance.padding.normal
anchors.leftMargin: Appearance.padding.large
anchors.rightMargin: Appearance.padding.large + Appearance.padding.normal / 2
anchors.bottomMargin: 0
asynchronous: true
sourceComponent: leftContentComponent
@ -186,6 +185,7 @@ RowLayout {
id: leftContentComponent
ColumnLayout {
id: leftLauncherLayout
anchors.fill: parent
spacing: Appearance.spacing.small

View file

@ -143,6 +143,8 @@ Item {
InnerBorder {
id: taskbarBorder
leftThickness: 0
rightThickness: Appearance.padding.normal / 2
}
Component {