From b0e61967f50b075928028502a9308cc94e06d105 Mon Sep 17 00:00:00 2001 From: Erik Prabowo Kamal Date: Fri, 12 Dec 2025 17:39:13 +0800 Subject: Capitalise shop & cart folder initial letters and reindent as needed. --- Shop/Cart/Alert.ui.qml | 67 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 Shop/Cart/Alert.ui.qml (limited to 'Shop/Cart/Alert.ui.qml') diff --git a/Shop/Cart/Alert.ui.qml b/Shop/Cart/Alert.ui.qml new file mode 100644 index 0000000..4e306c3 --- /dev/null +++ b/Shop/Cart/Alert.ui.qml @@ -0,0 +1,67 @@ +import QtQuick +import QtQuick.Controls +import QtQuick.Layouts +import Eduport +import "../../TextField" as TxtFld +import "../../Label" as Lbl +import "../../Button" as Btn + +Rectangle { + id: alertContainer + color: "#f8d7da" + border.color: "#f1aeb5" + height: alertContent.height + width: alertContent.width + radius: 8 + RowLayout { + id: alertContent + anchors.fill: parent + spacing: 0 + Label { + id: alertEmoji + text: "🔥" + Layout.bottomMargin: 16 + Layout.rightMargin: 8 + Layout.topMargin: 16 + Layout.leftMargin: 16 + font.pointSize: 21 + } + Label { + id: alertText + color: "#b02a37" + text: "These courses are at a limited discount, please checkout within" + wrapMode: Text.Wrap + Layout.bottomMargin: 16 + Layout.topMargin: 16 + Layout.rightMargin: 4 + font.pointSize: 21 + } + Label { + id: alertTime + color: "#d6293e" + text: "2 days and 18 hours" + Layout.rightMargin: 8 + Layout.bottomMargin: 16 + Layout.topMargin: 16 + font.styleName: "Bold" + font.pointSize: 21 + font.family: "Roboto" + } + Button { + width: 40 + icon.source: "../../Bootstrap/icons/x.svg" + flat: true + checkable: true + display: AbstractButton.IconOnly + Layout.bottomMargin: 16 + Layout.topMargin: 16 + Layout.rightMargin: 8 + Layout.maximumHeight: 40 + Layout.maximumWidth: 40 + Layout.preferredHeight: 40 + Layout.preferredWidth: 40 + Layout.minimumHeight: 40 + Layout.minimumWidth: 40 + } + } +} -- cgit v1.2.3