mirror of
https://github.com/belsabbagh/dotfiles.git
synced 2026-04-11 09:36:46 +00:00
33 lines
940 B
QML
33 lines
940 B
QML
import qs.components
|
|
import qs.components.effects
|
|
import qs.services
|
|
import qs.config
|
|
import QtQuick
|
|
import QtQuick.Layouts
|
|
|
|
StyledRect {
|
|
id: root
|
|
|
|
default property alias content: contentColumn.data
|
|
property real contentSpacing: Appearance.spacing.larger
|
|
property bool alignTop: false
|
|
|
|
Layout.fillWidth: true
|
|
implicitHeight: contentColumn.implicitHeight + Appearance.padding.large * 2
|
|
|
|
radius: Appearance.rounding.normal
|
|
color: Colours.transparency.enabled ? Colours.layer(Colours.palette.m3surfaceContainer, 2) : Colours.palette.m3surfaceContainerHigh
|
|
|
|
ColumnLayout {
|
|
id: contentColumn
|
|
|
|
anchors.left: parent.left
|
|
anchors.right: parent.right
|
|
anchors.top: root.alignTop ? parent.top : undefined
|
|
anchors.verticalCenter: root.alignTop ? undefined : parent.verticalCenter
|
|
anchors.margins: Appearance.padding.large
|
|
|
|
spacing: root.contentSpacing
|
|
}
|
|
}
|