dotfiles/.config/quickshell/overview/common/widgets/StyledRectangularShadow.qml
2025-12-15 18:20:18 +01:00

14 lines
299 B
QML

import QtQuick
import QtQuick.Effects
import ".."
RectangularShadow {
required property var target
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
}