Same coloring for the lockscreen
This commit is contained in:
parent
40f157a0ff
commit
11f8006590
1 changed files with 8 additions and 1 deletions
|
|
@ -141,9 +141,16 @@ WlSessionLock {
|
||||||
FastBlur {
|
FastBlur {
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
source: lockBgImage
|
source: lockBgImage
|
||||||
radius: 48 // Adjust blur strength as needed
|
radius: 22 // Adjust blur strength as needed
|
||||||
transparentBorder: true
|
transparentBorder: true
|
||||||
}
|
}
|
||||||
|
Rectangle {
|
||||||
|
anchors.fill: parent
|
||||||
|
color: Qt.rgba(
|
||||||
|
Theme.backgroundPrimary.r,
|
||||||
|
Theme.backgroundPrimary.g,
|
||||||
|
Theme.backgroundPrimary.b, 0.6)
|
||||||
|
}
|
||||||
// Main content container (moved up, Rectangle removed)
|
// Main content container (moved up, Rectangle removed)
|
||||||
ColumnLayout {
|
ColumnLayout {
|
||||||
anchors.centerIn: parent
|
anchors.centerIn: parent
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue