Skip to content

Commit 016306c

Browse files
committed
style(spacing): adjust spacing between title and About icon
- Change SizedBox width from AppSpacing.sm to AppSpacing.xs in multiple files: - app_configuration_page.dart - content_management_page.dart - settings_page.dart
1 parent ff69e0d commit 016306c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lib/app_configuration/view/app_configuration_page.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ class _AppConfigurationPageState extends State<AppConfigurationPage>
5252
l10n.appConfigurationPageTitle,
5353
),
5454
const SizedBox(
55-
width: AppSpacing.sm,
55+
width: AppSpacing.xs,
5656
),
5757
AboutIcon(
5858
dialogTitle: l10n.appConfigurationPageTitle,

lib/content_management/view/content_management_page.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ class _ContentManagementPageState extends State<ContentManagementPage>
183183
children: [
184184
Text(l10n.contentManagement),
185185
const SizedBox(
186-
width: AppSpacing.sm,
186+
width: AppSpacing.xs,
187187
),
188188
AboutIcon(
189189
dialogTitle: l10n.contentManagement,

lib/settings/view/settings_page.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ class _SettingsViewState extends State<_SettingsView> {
6565
children: [
6666
Text(l10n.settings),
6767
const SizedBox(
68-
width: AppSpacing.sm,
68+
width: AppSpacing.xs,
6969
),
7070
AboutIcon(
7171
dialogTitle: l10n.settings,

0 commit comments

Comments
 (0)