bar: uniformising left section look (border, radius, colors) with workspace

This commit is contained in:
quadbyte 2025-08-18 09:44:11 -04:00
parent 549a7ec6f3
commit ea72d7675e
5 changed files with 27 additions and 84 deletions

View file

@ -27,9 +27,13 @@ Row {
Rectangle {
// Let the Rectangle size itself based on its content (the Row)
width: row.width + Style.marginMedium * scaling * 2
height: row.height
height: Math.round(Style.barHeight * 0.75 * scaling)
radius: Math.round(Style.radiusMedium * scaling)
color: Color.mSurfaceVariant
radius: Style.radiusSmall * scaling
border.color: Color.mOutline
border.width: Math.max(1, Math.round(Style.borderThin * scaling))
anchors.verticalCenter: parent.verticalCenter
Item {