forked from Shinonome/dots-hyprland
38 lines
783 B
QML
38 lines
783 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
|
|
import qs.modules.waffle.actionCenter
|
|
|
|
BodyRectangle {
|
|
id: root
|
|
implicitHeight: contentLayout.implicitHeight
|
|
|
|
ColumnLayout {
|
|
id: contentLayout
|
|
anchors.fill: parent
|
|
spacing: 0
|
|
|
|
MainPageBodyToggles {
|
|
id: togglesContainer
|
|
Layout.fillWidth: true
|
|
}
|
|
|
|
Rectangle {
|
|
implicitHeight: 1
|
|
Layout.fillWidth: true
|
|
color: Looks.colors.bg1Border
|
|
}
|
|
|
|
MainPageBodySliders {
|
|
Layout.margins: 12
|
|
Layout.topMargin: 18
|
|
Layout.bottomMargin: 14
|
|
}
|
|
}
|
|
}
|