Add qml/GlowFocus.qml

This commit is contained in:
milonekrone 2026-01-14 16:03:31 +01:00
parent 498623217f
commit 510d965eb1

16
qml/GlowFocus.qml Normal file
View File

@ -0,0 +1,16 @@
import QtQuick
Item {
Rectangle {
anchors.fill: parent
radius: 16
color: "transparent"
border.width: 0
}
Rectangle {
anchors.fill: parent
radius: 16
color: "#7fb6ff"
opacity: 0.10
}
}