diff --git a/Outpost/Features/Account/SettingsSidebarList.swift b/Outpost/Features/Account/SettingsSidebarList.swift index 0a33bd0..9f86f5d 100644 --- a/Outpost/Features/Account/SettingsSidebarList.swift +++ b/Outpost/Features/Account/SettingsSidebarList.swift @@ -59,8 +59,11 @@ struct SettingsSidebarList: View { // the category is still `!isImplemented`. if sections.allSatisfy({ !$0.isImplemented }) { Text("Coming Soon") - .font(.caption2.weight(.medium)) - .foregroundStyle(.tertiary) + .font(.system(size: 9, weight: .semibold)) + .foregroundStyle(.secondary) + .padding(.horizontal, 6) + .padding(.vertical, 2) + .background(.secondary.opacity(0.15), in: Capsule()) } } }