mirror of
https://github.com/zoriya/noctalia-shell.git
synced 2025-12-06 06:36:15 +00: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
|
|
}
|