mirror of
https://github.com/end-4/dots-hyprland.git
synced 2026-06-05 14:59:27 -05:00
44 lines
902 B
QML
44 lines
902 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
|
|
Layout.bottomMargin: -12
|
|
}
|
|
|
|
Rectangle {
|
|
implicitHeight: 1
|
|
Layout.fillWidth: true
|
|
color: Looks.colors.bg1Border
|
|
}
|
|
|
|
ActionCenterBodySliders {
|
|
Layout.margins: 12
|
|
Layout.topMargin: 18
|
|
Layout.bottomMargin: 14
|
|
}
|
|
}
|
|
}
|