1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-11-06 19:12:30 +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 {
id: nav
height: parent.height
anchors.fill: parent
anchors {
top: parent.top
left: parent.left
leftMargin: 20
bottom: parent.bottom
Item {
Layout.fillHeight: true
Layout.fillWidth: true
}
Button {
text: qsTr("News")
onClicked: Qt.openUrlExternally("https://screen-play.app/blog/")
@ -110,6 +109,12 @@ Item {
icon.height: 14
Layout.alignment: Qt.AlignVCenter
}
Item {
Layout.fillHeight: true
Layout.fillWidth: true
}
}
}