lux-shell/components/StyledPane.qml
Benjamin Palko e180fee2a9 styled pane
2025-09-08 08:23:57 -04:00

19 lines
442 B
QML

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