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

Fix footer styling

This commit is contained in:
kelteseth 2017-12-14 14:07:05 +01:00
parent 3aea270e53
commit f4f683669c

View File

@ -1,7 +1,7 @@
import QtQuick 2.9 import QtQuick 2.9
import QtGraphicalEffects 1.0 import QtGraphicalEffects 1.0
import QtQuick.Controls 2.2 import QtQuick.Controls 2.2
import QtQuick.Controls.Material 2.2
//Enums //Enums
import LocalWorkshopCreationStatus 1.0 import LocalWorkshopCreationStatus 1.0
@ -10,8 +10,8 @@ Rectangle {
anchors.fill: parent anchors.fill: parent
state: "out" state: "out"
Component.onCompleted: create.state = "create" Component.onCompleted: create.state = "create"
property url activeVideoFile property url activeVideoFile: ""
property url activeFolder property url activeFolder: ""
FontLoader { FontLoader {
id: font_Roboto_Regular id: font_Roboto_Regular
@ -185,15 +185,23 @@ Rectangle {
spacing: 20 spacing: 20
Button { Button {
text: qsTr("Quickstart Guide") text: qsTr("Quickstart Guide")
Material.background: Material.Blue
Material.foreground: "white"
} }
Button { Button {
text: qsTr("Documentation") text: qsTr("Documentation")
Material.background: Material.LightGreen
Material.foreground: "white"
} }
Button { Button {
text: qsTr("Lore Ipsum") text: qsTr("Lore Ipsum")
Material.background: Material.Orange
Material.foreground: "white"
} }
Button { Button {
text: qsTr("Community") text: qsTr("Community")
Material.background: Material.Red
Material.foreground: "white"
} }
} }
} }