blob: 6e1f2e16e3c6d947e726b50c675fde437cbc8651 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import QtQuick
import QtQuick.Effects
import "root:/modules/common"
RectangularShadow {
required property var target
anchors.fill: target
radius: target.radius
blur: 1.2 * Appearance.sizes.elevationMargin
spread: 1
color: Appearance.colors.colShadow
cached: true
}
|