styled pane

This commit is contained in:
Benjamin Palko 2025-09-08 08:23:57 -04:00
parent 32167ef44e
commit e180fee2a9

19
components/StyledPane.qml Normal file
View file

@ -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
}
}