Panels: improvements

- slightly smaller and more homogenous sizing
- better look for battery panel (icons)
This commit is contained in:
ItsLemmy
2025-11-06 23:14:48 -05:00
parent df73582ae8
commit fc3db67def
9 changed files with 52 additions and 25 deletions
@@ -13,8 +13,8 @@ import qs.Modules.MainScreen
SmartPanel {
id: root
preferredWidth: 380 * Style.uiScaleRatio
preferredHeight: 480 * Style.uiScaleRatio
preferredWidth: Math.round(340 * Style.uiScaleRatio)
preferredHeight: Math.round(420 * Style.uiScaleRatio)
onOpened: function () {
NotificationService.updateLastSeenTs()
@@ -25,6 +25,7 @@ SmartPanel {
color: Color.transparent
ColumnLayout {
id: mainColumn
anchors.fill: parent
anchors.margins: Style.marginL
spacing: Style.marginM
@@ -95,7 +96,7 @@ SmartPanel {
NIcon {
icon: "bell-off"
pointSize: 64
pointSize: 48
color: Color.mOnSurfaceVariant
Layout.alignment: Qt.AlignHCenter
}