Files
illogical-impulse/dots/.config/quickshell/ii/modules/common/widgets/StyledDropShadow.qml
T
2025-11-05 00:41:44 +01:00

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
}