From f785a82079d8c57a88fd537cab99865de8ee20fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=A6=8C=EA=A6=AB=EA=A6=B6=EA=A6=8F=EA=A7=80=EA=A6=A6?= =?UTF-8?q?=EA=A6=BF=EA=A6=A7=EA=A6=AE=EA=A6=91=EA=A6=A9=EA=A6=AD=EA=A7=80?= Date: Thu, 11 Jan 2024 11:30:19 +0800 Subject: Course list item labels are Bootstrap heading 6 That's why the colour and font settings were removed in the previous commit. --- Student/Dashboard/CourseListItem.ui.qml | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Student/Dashboard/CourseListItem.ui.qml') diff --git a/Student/Dashboard/CourseListItem.ui.qml b/Student/Dashboard/CourseListItem.ui.qml index 2102ab3..fb69782 100644 --- a/Student/Dashboard/CourseListItem.ui.qml +++ b/Student/Dashboard/CourseListItem.ui.qml @@ -2,6 +2,7 @@ import QtQuick 2.15 import QtQuick.Controls 2.15 import QtQuick.Layouts 1.15 import QtGraphicalEffects 1.15 +import Bootstrap 5.3 RowLayout { property alias courseTitle: courseTitle @@ -39,6 +40,7 @@ RowLayout { id: courseTitle text: "Building Scalable APIs with GraphQL" Layout.fillWidth: true + Bootstrap.heading: 6 } RowLayout { // So the Bar and % of value side by side @@ -55,6 +57,7 @@ RowLayout { Label{ id: courseProgressPercentage text: Math.round(completedLectures / totalLectures * 100) + "%" + Bootstrap.heading: 6 // horizontalAlignment: Text.AlignRight // Layout.fillWidth: true } -- cgit v1.2.3