diff options
Diffstat (limited to 'Hotline/macOS/AboutView.swift')
| -rw-r--r-- | Hotline/macOS/AboutView.swift | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/Hotline/macOS/AboutView.swift b/Hotline/macOS/AboutView.swift index 1cf7dc2..baafcf8 100644 --- a/Hotline/macOS/AboutView.swift +++ b/Hotline/macOS/AboutView.swift @@ -89,20 +89,21 @@ struct AboutView: View { VStack(alignment: .leading, spacing: 4) { Link(destination: URL(string: "https://github.com/mierau/hotline")!) { - HStack(alignment: .center) { - Text("GitHub Contributors") + HStack(alignment: .center, spacing: 4) { + Text("Contributors") .lineLimit(1) .font(.system(size: 16)) .fontWeight(.semibold) .foregroundStyle(.black) - .opacity(0.5) - + .opacity(0.75) + Image(systemName: "arrow.forward.circle.fill") .resizable() + .fontWeight(.bold) .scaledToFit() - .frame(width: 16, height: 16) + .frame(width: 12, height: 12) .foregroundStyle(.black) - .opacity(0.5) + .opacity(0.75) } } .padding(.top, 24) |