diff --git a/components/StyledPane.qml b/components/StyledPane.qml new file mode 100644 index 0000000..4560aa4 --- /dev/null +++ b/components/StyledPane.qml @@ -0,0 +1,19 @@ +import qs.config +import QtQuick +import QtQuick.Controls + +Pane { + padding: 24 + background: Rectangle { + color: "transparent" + border.width: Styling.theme.border + border.color: Styling.theme.basecontent + opacity: 0.33 + Behavior on border.color { + ColorAnimation { + duration: Styling.animations.speed.fast + } + } + radius: Styling.theme.radiusBox + } +}