noctalia-shell/Widgets/NBox.qml
quadbyte b723eccc78 Renamed most font and sizing shorthands properties for easier understanding and maintenance
property real fontSizeXS: 9
  property real fontSizeS: 10
  property real fontSizeM: 11
  property real fontSizeL: 13
  property real fontSizeXL: 16
  property real fontSizeXXL: 18
  property real fontSizeXXXL: 24
2025-08-18 11:12:51 -04:00

19 lines
477 B
QML

import QtQuick
import qs.Commons
import qs.Commons
import qs.Services
// 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
implicitWidth: childrenRect.width
implicitHeight: childrenRect.height
color: Color.mSurfaceVariant
radius: Style.radiusM * scaling
border.color: Color.mOutlineVariant
border.width: Math.max(1, Style.borderS * scaling)
clip: true
}