mirror of
https://github.com/end-4/dots-hyprland.git
synced 2026-06-07 07:49:28 -05:00
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
|
|
}
|