diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-03-30 12:32:07 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-03-30 12:32:07 +0800 |
commit | c3b7404636484ce74ba74ba61101877e12bd7aba (patch) | |
tree | 425a741ddd67d5e68d7a3e39ec501a7aaad6681a /Course/Detail/Classic | |
parent | 53011b961bf322797b3e8fdd354a9558e91652c0 (diff) |
Stopwatch & danger colour reuse
Diffstat (limited to 'Course/Detail/Classic')
-rw-r--r-- | Course/Detail/Classic/Content/Sidebar/Video.ui.qml | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/Course/Detail/Classic/Content/Sidebar/Video.ui.qml b/Course/Detail/Classic/Content/Sidebar/Video.ui.qml index 5e6e155..0136221 100644 --- a/Course/Detail/Classic/Content/Sidebar/Video.ui.qml +++ b/Course/Detail/Classic/Content/Sidebar/Video.ui.qml @@ -113,9 +113,24 @@ ColumnLayout { id: time spacing: 8 + Image { + source: "../../../../../Font-Awesome/svgs/solid/stopwatch.svg" + sourceSize { + width: 13 + height: 15 + } + + ColorOverlay { + anchors.fill: parent + source: parent + color: Eduport + .bsDanger + } + } + Lbl.Body { text: qsTr("5 days left at this price") - color: "#d6293e" + color: Eduport.bsDanger } } } |