forked from Shinonome/dots-hyprland
43 lines
865 B
QML
43 lines
865 B
QML
import QtQuick
|
|
import QtQuick.Layouts
|
|
import Quickshell
|
|
import qs
|
|
import qs.services
|
|
import qs.modules.common
|
|
import qs.modules.common.functions
|
|
import qs.modules.waffle.looks
|
|
|
|
Rectangle {
|
|
id: root
|
|
|
|
Layout.fillHeight: true
|
|
Layout.fillWidth: true
|
|
color: Looks.colors.bgPanelBody
|
|
|
|
implicitWidth: 360
|
|
implicitHeight: contentLayout.implicitHeight
|
|
|
|
ColumnLayout {
|
|
id: contentLayout
|
|
anchors.fill: parent
|
|
spacing: 0
|
|
|
|
ActionCenterBodyToggles {
|
|
id: togglesContainer
|
|
Layout.fillWidth: true
|
|
}
|
|
|
|
Rectangle {
|
|
implicitHeight: 1
|
|
Layout.fillWidth: true
|
|
color: Looks.colors.bg1Border
|
|
}
|
|
|
|
ActionCenterBodySliders {
|
|
Layout.margins: 12
|
|
Layout.topMargin: 18
|
|
Layout.bottomMargin: 14
|
|
}
|
|
}
|
|
}
|