blob: dba2159fda2dc29e43a21ec25ad287e89756a9d9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import QtQuick
import QtQuick.Effects
import ".."
RectangularShadow {
anchors.fill: target
radius: 20
blur: 0.9 * Appearance.sizes.elevationMargin
offset: Qt.vector2d(0.0, 1.0)
spread: 1
color: Appearance.colors.colShadow
cached: true
}
|