mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2026-04-30 17:42:06 -04:00
25 lines
461 B
QML
25 lines
461 B
QML
import QtQuick
|
|
import qs.Common
|
|
|
|
Rectangle {
|
|
id: card
|
|
|
|
LayoutMirroring.enabled: I18n.isRtl
|
|
LayoutMirroring.childrenInherit: true
|
|
|
|
property int pad: Theme.spacingM
|
|
|
|
radius: Theme.cornerRadius
|
|
color: Theme.nestedSurface
|
|
border.color: Theme.outlineMedium
|
|
border.width: 1
|
|
|
|
default property alias content: contentItem.data
|
|
|
|
Item {
|
|
id: contentItem
|
|
anchors.fill: parent
|
|
anchors.margins: card.pad
|
|
}
|
|
}
|