From f07c5055fa1037fd135ddb60850e8f7bb00cc82d Mon Sep 17 00:00:00 2001 From: psmattas Date: Tue, 18 Aug 2026 16:59:06 +0100 Subject: [PATCH] fix(settings): style Coming Soon as a capsule badge instead of plain text --- Outpost/Features/Account/SettingsSidebarList.swift | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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()) } } }