diff options
| author | Dustin Mierau <dustin@mierau.me> | 2024-05-14 13:35:26 -0700 |
|---|---|---|
| committer | Dustin Mierau <dustin@mierau.me> | 2024-05-14 13:35:26 -0700 |
| commit | 87e979fb48da4a46e64544cea3e7b7d5fc32caa1 (patch) | |
| tree | 4c10cdba5a88544543bf45ae454f643decf1358c /Hotline/macOS/AboutView.swift | |
| parent | e9fcf8c3b14e77479a6fb471bb51cd82a008147c (diff) | |
Newsgroup posting now works. Added reload button to news. More work on server and user icons.
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) |