fix(settings): style Coming Soon as a capsule badge instead of plain text

This commit is contained in:
2026-08-18 16:59:06 +01:00
parent 8af860cd7e
commit f07c5055fa
@@ -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())
}
}
}