Skip to content

Commit

Permalink
Change button style to plain
Browse files Browse the repository at this point in the history
To make the button not blue
  • Loading branch information
mikaelacaron committed Oct 29, 2024
1 parent 2aafe62 commit f134775
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ struct ContributorsListView: View {
Link(destination: URL(string: contributor.htmlURL) ?? GitHubURL.repo) {
ContributorsProfileView(contributor: contributor)
}
.buttonStyle(.plain)
}
} else {
ProgressView()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ struct ContributorsProfileView: View {
}

VStack(alignment: .leading) {
Text(contributor.login).bold()
Text(contributor.login)
.bold()
Text(
"^[\(contributor.contributions) contributions](inflect: true)",
comment: "the number of contributions by a contributor"
Expand Down

0 comments on commit f134775

Please sign in to comment.