mirror of
https://github.com/noctalia-dev/noctalia-shell.git
synced 2026-05-11 17:08:27 +08:00
14 lines
312 B
QML
14 lines
312 B
QML
import QtQuick
|
|
import qs.Commons
|
|
|
|
// Rounded group container using the variant surface color.
|
|
// To be used in side panels and settings panes to group fields or buttons.
|
|
Rectangle {
|
|
id: root
|
|
|
|
color: Color.mSurfaceVariant
|
|
radius: Style.radiusM
|
|
border.color: Color.mOutline
|
|
border.width: Style.borderS
|
|
}
|