1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-11-07 03:22:33 +01:00

Change community nav buttons to be centered

This commit is contained in:
Elias Steurer 2022-01-16 12:26:48 +01:00
parent 0f323d12d7
commit f6f3c68ca7

View File

@ -34,15 +34,14 @@ Item {
RowLayout { RowLayout {
id: nav id: nav
height: parent.height anchors.fill: parent
anchors { Item {
top: parent.top Layout.fillHeight: true
left: parent.left Layout.fillWidth: true
leftMargin: 20
bottom: parent.bottom
} }
Button { Button {
text: qsTr("News") text: qsTr("News")
onClicked: Qt.openUrlExternally("https://screen-play.app/blog/") onClicked: Qt.openUrlExternally("https://screen-play.app/blog/")
@ -110,6 +109,12 @@ Item {
icon.height: 14 icon.height: 14
Layout.alignment: Qt.AlignVCenter Layout.alignment: Qt.AlignVCenter
} }
Item {
Layout.fillHeight: true
Layout.fillWidth: true
}
} }
} }