From e180fee2a907ecaa54c30382476e55bf09832a0e Mon Sep 17 00:00:00 2001 From: Benjamin Palko Date: Mon, 8 Sep 2025 08:23:57 -0400 Subject: [PATCH] styled pane --- components/StyledPane.qml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 components/StyledPane.qml 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 + } +}