18 lines
400 B
QML
18 lines
400 B
QML
import QtQuick
|
|
import qs.Services
|
|
|
|
// Generic themed card container
|
|
Rectangle {
|
|
id: root
|
|
|
|
readonly property real scaling: Scaling.scale(screen)
|
|
|
|
implicitWidth: childrenRect.width
|
|
implicitHeight: childrenRect.height
|
|
|
|
color: Colors.backgroundSecondary
|
|
radius: Style.radiusMedium * scaling
|
|
border.color: Colors.backgroundTertiary
|
|
border.width: Math.min(1, Style.borderThin * scaling)
|
|
}
|
|
|