2022-05-04 15:01:50 +02:00
|
|
|
import QtQuick 2.6
|
|
|
|
|
import QtQuick.Layouts 1.0
|
|
|
|
|
import QtQuick.Controls 2.0
|
|
|
|
|
import QtQuick.Controls.Material 2.0
|
|
|
|
|
|
|
|
|
|
Pane {
|
2022-06-15 13:33:19 +02:00
|
|
|
topPadding: constants.paddingSmall
|
|
|
|
|
bottomPadding: constants.paddingSmall
|
2022-05-04 15:01:50 +02:00
|
|
|
background: Rectangle {
|
|
|
|
|
color: Qt.lighter(Material.background, 1.15)
|
2022-05-10 19:31:25 +02:00
|
|
|
radius: constants.paddingSmall
|
2022-05-04 15:01:50 +02:00
|
|
|
}
|
|
|
|
|
}
|