summaryrefslogtreecommitdiff
path: root/modules/bar/popouts/Wrapper.qml
blob: 7782d90309cce7d515dfe319a40f08c582ce89ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import "root:/services"
import "root:/config"
import Quickshell
import QtQuick

Item {
    id: root

    required property ShellScreen screen

    implicitWidth: content.implicitWidth
    implicitHeight: content.implicitHeight + BorderConfig.rounding * 2

    Content {
        id: content

        screen: root.screen
    }
}