This commit is contained in:
=
2025-08-03 19:18:26 -05:00
parent 3a1de7cdcc
commit d42bd56697

View File

@@ -4,9 +4,9 @@
SPDX-License-Identifier: LGPL-2.0-or-later SPDX-License-Identifier: LGPL-2.0-or-later
*/ */
import QtQuick import QtQuick 2.15
import QtQuick.Layouts import QtQuick.Controls 2.15
import QtQuick.Controls import QtQuick.Layouts 1.15
Item { Item {
id: mainStack id: mainStack
@@ -36,7 +36,9 @@ Item {
leftMargin: 10 leftMargin: 10
} }
height: 50 height: 50
background: null background: Rectangle {
color: "transparent"
}
contentItem: Text { contentItem: Text {
text: session.displayText text: session.displayText
color: "#FFFFFF" color: "#FFFFFF"
@@ -132,7 +134,9 @@ Item {
y: 5 y: 5
width: 955 width: 955
height: 75 height: 75
background: null background: Rectangle {
color: "transparent"
}
font.family: "Rajdhani" font.family: "Rajdhani"
font.pointSize: 30 font.pointSize: 30
font.bold: true font.bold: true
@@ -165,7 +169,9 @@ Item {
y: 5 y: 5
width: 955 width: 955
height: 75 height: 75
background: null background: Rectangle {
color: "transparent"
}
font.family: "Rajdhani" font.family: "Rajdhani"
font.pointSize: 30 font.pointSize: 30
font.bold: true font.bold: true