diff --git a/components/StyledPane.qml b/components/StyledPane.qml index 4560aa4..8edb4b1 100644 --- a/components/StyledPane.qml +++ b/components/StyledPane.qml @@ -3,12 +3,14 @@ import QtQuick import QtQuick.Controls Pane { + id: pane + padding: 24 background: Rectangle { color: "transparent" border.width: Styling.theme.border - border.color: Styling.theme.basecontent - opacity: 0.33 + border.color: pane.hovered ? Styling.theme.accent : Styling.theme.basecontent + opacity: 0.2 Behavior on border.color { ColorAnimation { duration: Styling.animations.speed.fast