diff options
Diffstat (limited to 'widgets/LayerShadow.qml')
| -rw-r--r-- | widgets/LayerShadow.qml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/widgets/LayerShadow.qml b/widgets/LayerShadow.qml new file mode 100644 index 0000000..1694a8e --- /dev/null +++ b/widgets/LayerShadow.qml @@ -0,0 +1,9 @@ +import "root:/config" +import Qt5Compat.GraphicalEffects + +DropShadow { + anchors.fill: source + color: Qt.alpha(Appearance.colours.m3shadow, 0.7) + radius: 10 + samples: 1 + radius * 2 +} |