chore: updated text size
ba359f81
1 file(s) · +4 −4
| 118 | 118 | ||
| 119 | 119 | case .link(let url, let label): |
|
| 120 | 120 | Button(action: { onLinkTap(url) }) { |
|
| 121 | - | HStack(spacing: 4) { |
|
| 122 | - | Image(systemName: "arrow.right") |
|
| 123 | - | .font(.system(.caption, design: .monospaced)) |
|
| 121 | + | HStack(alignment:.top, spacing: 4) { |
|
| 122 | + | Text("=>") |
|
| 123 | + | .font(.system(size: 14, design: .monospaced)) |
|
| 124 | 124 | Text(label) |
|
| 125 | 125 | .multilineTextAlignment(.leading) |
|
| 126 | - | .font(.system(.caption, design: .monospaced)) |
|
| 126 | + | .font(.system(size: 14, design: .monospaced)) |
|
| 127 | 127 | } |
|
| 128 | 128 | } |
|
| 129 | 129 | .foregroundColor(.blue) |