summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Badge.ui.qml25
1 files changed, 0 insertions, 25 deletions
diff --git a/Badge.ui.qml b/Badge.ui.qml
deleted file mode 100644
index 78359d6..0000000
--- a/Badge.ui.qml
+++ /dev/null
@@ -1,25 +0,0 @@
-import QtQuick 2.15
-import QtQuick.Controls 2.15
-import QtQuick.Layouts 1.15
-
-Item {
- width: badgeContent.width
- height: badgeContent.height
- Label{
- id: discount
- color: "#ffffff"
- text: "60% off"
- font.pointSize: 8
- rightPadding: 8
- leftPadding: 8
- bottomPadding: 4
- topPadding: 4
- font.family: "Roboto"
- background: Rectangle {
- width: discount.width
- height: discount.height
- color: "#fd7e14"
- radius: 4
- }
- }
-}