diff --git a/qml/GlowFocus.qml b/qml/GlowFocus.qml new file mode 100644 index 0000000..fd22558 --- /dev/null +++ b/qml/GlowFocus.qml @@ -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 + } +}