quickshell: add background wrapper around weekday headers

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
rope 2026-05-27 11:21:01 +01:00
parent 269c9bbe15
commit 6e69f86f17

View file

@ -1902,7 +1902,15 @@ in
anchors.centerIn: parent anchors.centerIn: parent
spacing: 4 spacing: 4
Rectangle {
width: 7 * 32
height: weekdayRow.height + 8
radius: 6
color: Theme.base02
Row { Row {
id: weekdayRow
anchors.centerIn: parent
spacing: 0 spacing: 0
Repeater { Repeater {
model: ["Mo", "Tu", "We", "Th", "Fr", "Sa", "Su"] model: ["Mo", "Tu", "We", "Th", "Fr", "Sa", "Su"]
@ -1917,6 +1925,7 @@ in
} }
} }
} }
}
Grid { Grid {
columns: 7 columns: 7