From e50029d553e67ac7c580ce17a80b7bf42e9410f7 Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Mon, 9 Feb 2026 14:17:59 -0600 Subject: [PATCH] Signed-off-by: Matt Bruce --- .../Views/Settings/iCloudSyncSettingsView.swift | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/Sources/Bedrock/Views/Settings/iCloudSyncSettingsView.swift b/Sources/Bedrock/Views/Settings/iCloudSyncSettingsView.swift index 3bb1168..be0c291 100644 --- a/Sources/Bedrock/Views/Settings/iCloudSyncSettingsView.swift +++ b/Sources/Bedrock/Views/Settings/iCloudSyncSettingsView.swift @@ -114,13 +114,16 @@ public struct iCloudSyncSettingsView: View { // Sync status (show when enabled and available) if viewModel.iCloudEnabled && viewModel.iCloudAvailable { - SyncStatusRow( - viewModel: viewModel, - accentColor: accentColor, - successColor: successColor, - warningColor: warningColor - ) - .padding(.top, Design.Spacing.xSmall) + SettingsDivider() + + SettingsCardRow { + SyncStatusRow( + viewModel: viewModel, + accentColor: accentColor, + successColor: successColor, + warningColor: warningColor + ) + } } } }