forked from Shinonome/dots-hyprland
14 lines
276 B
QML
14 lines
276 B
QML
import QtQuick
|
|
import Qt5Compat.GraphicalEffects
|
|
import qs.modules.common
|
|
|
|
DropShadow {
|
|
required property var target
|
|
source: target
|
|
anchors.fill: source
|
|
radius: 8
|
|
samples: radius * 2 + 1
|
|
color: Appearance.colors.colShadow
|
|
transparentBorder: true
|
|
}
|