From b01137edf1386c25c5ec8277d890d37383edc745 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Fri, 5 Jun 2026 21:25:14 +1000 Subject: [PATCH] feat: add extra padding to bottom of nexus pages So you can scroll up slightly more than the bottom Also reduce top spacing --- modules/nexus/common/PageBase.qml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/modules/nexus/common/PageBase.qml b/modules/nexus/common/PageBase.qml index efde6578..82df2215 100644 --- a/modules/nexus/common/PageBase.qml +++ b/modules/nexus/common/PageBase.qml @@ -19,7 +19,7 @@ ColumnLayout { default property Item contentChild - spacing: Tokens.spacing.extraExtraLarge + spacing: Tokens.spacing.extraLargeIncreased RowLayout { spacing: Tokens.spacing.largeIncreased @@ -52,9 +52,8 @@ ColumnLayout { Layout.fillHeight: true Layout.topMargin: -topMargin - Layout.bottomMargin: -bottomMargin topMargin: Tokens.padding.large - bottomMargin: Tokens.padding.large + bottomMargin: Tokens.padding.extraLarge contentHeight: root.contentChild?.implicitHeight ?? 0 contentItem.children: [root.contentChild]