mirror of
https://github.com/end-4/dots-hyprland.git
synced 2026-06-05 14:59:27 -05:00
26 lines
483 B
QML
26 lines
483 B
QML
pragma ComponentBehavior: Bound
|
|
import QtQuick
|
|
import QtQuick.Controls
|
|
import Quickshell
|
|
import Quickshell.Hyprland
|
|
import qs.modules.common
|
|
import qs.modules.common.functions
|
|
import qs.modules.waffle.looks
|
|
|
|
Rectangle {
|
|
id: root
|
|
|
|
required property var target
|
|
z: 0
|
|
|
|
anchors {
|
|
fill: target
|
|
margins: -border.width
|
|
}
|
|
|
|
border.color: Looks.colors.ambientShadow
|
|
border.width: 1
|
|
color: "transparent"
|
|
radius: target.radius + border.width
|
|
}
|