diff --git a/app/qml/FindDevicesPage.qml b/app/qml/FindDevicesPage.qml --- a/app/qml/FindDevicesPage.qml +++ b/app/qml/FindDevicesPage.qml @@ -45,7 +45,13 @@ section { property: "status" delegate: Kirigami.Heading { + width: devices.width + leftPadding: Kirigami.Units.smallSpacing level: 4 + color: Kirigami.Theme.highlightedTextColor + background: Rectangle { + color: Kirigami.Theme.highlightColor + } text: switch (parseInt(section)) { case DevicesModel.Paired: @@ -55,7 +61,6 @@ case (DevicesModel.Reachable | DevicesModel.Paired): return i18n("Paired & Reachable") } - } }