Addressed PR comment

This commit is contained in:
Andrei Smirnov 2021-08-20 07:41:56 +03:00 committed by Iuri Matias
parent 62ef00ee60
commit afa9c555ce
1 changed files with 9 additions and 5 deletions

View File

@ -305,14 +305,18 @@ Item {
} }
} }
Rectangle { Item {
id: blockedBanner
Layout.fillWidth: true Layout.fillWidth: true
height: 40 Layout.preferredHeight: 40
Layout.alignment: Qt.AlignHCenter Layout.alignment: Qt.AlignHCenter
visible: isBlocked visible: isBlocked
color: Style.current.red
opacity: 0.1 Rectangle {
id: blockedBanner
anchors.fill: parent
color: Style.current.red
opacity: 0.1
}
Text { Text {
id: blockedText id: blockedText