diff options
Diffstat (limited to 'Home')
-rw-r--r-- | Home/Default/Card.ui.qml | 50 |
1 files changed, 42 insertions, 8 deletions
diff --git a/Home/Default/Card.ui.qml b/Home/Default/Card.ui.qml index c7d4dc8..c1193e1 100644 --- a/Home/Default/Card.ui.qml +++ b/Home/Default/Card.ui.qml @@ -191,21 +191,55 @@ Item { Item { Layout.fillWidth: true - Lbl.FwLight { - id: duration - text: "15h 30m" + RowLayout { anchors { left: parent.left - verticalCenter: parent.verticalCenter + verticalCenter: parent + .verticalCenter + } + + Image { + source: "../../Font-Awesome/svgs/regular/clock.svg" + sourceSize { + width: 15 + height: 15 + } + ColorOverlay { + anchors.fill: parent + source: parent + color: "#d6293e" + } + Layout.rightMargin: 8 + } + + Lbl.FwLight { + text: "15h 30m" } } - Lbl.FwLight { - id: lectures - text: "68 lectures" + RowLayout { anchors { right: parent.right - verticalCenter: parent.verticalCenter + verticalCenter: parent + .verticalCenter + } + + Image { + source: "../../Font-Awesome/svgs/solid/table.svg" + sourceSize { + width: 15 + height: 15 + } + ColorOverlay { + anchors.fill: parent + source: parent + color: "#fd7e14" + } + Layout.rightMargin: 8 + } + + Lbl.FwLight { + text: "68 lectures" } } } |