diff --git a/qml/TweetView.qml b/qml/TweetView.qml index e756521..00f06ee 100644 --- a/qml/TweetView.qml +++ b/qml/TweetView.qml @@ -17,17 +17,26 @@ ColumnLayout { headerPositioning: ListView.OverlayHeader - header: Rectangle { - width: parent.width - height: 32 + header: Item { + SystemPalette { id: headerPalette; colorGroup: SystemPalette.Active } z: 2 - color: Material.background - + width: parent.width + height: 36 Label { + z: 3 anchors.fill: parent + anchors.leftMargin: 10 text: name font.pixelSize: 18 font.weight: Font.Light + verticalAlignment: Label.AlignVCenter + color: headerPalette.windowText + } + + Rectangle { + anchors.fill: parent + color: headerPalette.window + opacity: 0.8 } } } diff --git a/qml/chirp.qml b/qml/chirp.qml index 95f181f..a0a0dfc 100644 --- a/qml/chirp.qml +++ b/qml/chirp.qml @@ -184,7 +184,9 @@ ApplicationWindow { columns: 2 rows: 1 anchors.fill: parent - anchors.margins: 8 + anchors.margins: 0 + columnSpacing: 0 + rowSpacing: 0 TweetView { Layout.row: 0