2019-09-09 21:42:33 +02:00
|
|
|
import QtQuick 2.5
|
2019-10-06 11:08:13 +02:00
|
|
|
import QtQuick.Controls 2.1
|
2019-09-09 21:42:33 +02:00
|
|
|
|
|
|
|
Label {
|
2020-10-08 21:11:21 +02:00
|
|
|
color: colors.brightText
|
|
|
|
horizontalAlignment: Text.AlignHCenter
|
|
|
|
height: contentHeight * 1.2
|
|
|
|
width: contentWidth * 1.2
|
|
|
|
|
|
|
|
background: Rectangle {
|
|
|
|
radius: parent.height / 2
|
2020-10-26 13:50:44 +01:00
|
|
|
color: colors.alternateBase
|
2020-10-08 21:11:21 +02:00
|
|
|
}
|
2019-09-09 21:42:33 +02:00
|
|
|
|
|
|
|
}
|