Skip to content

Commit

Permalink
refactor: reduce font size of error and warning icons
Browse files Browse the repository at this point in the history
  • Loading branch information
bouassaba committed Nov 23, 2024
1 parent b5b868b commit cbddcec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Sources/Library/Views/ErrorIcon.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import SwiftUI
struct VOErrorIcon: View {
var body: some View {
Image(systemName: "xmark.circle")
.font(.largeTitle)
.font(.title)
.foregroundStyle(Color.red500)
}
}
Expand Down
2 changes: 1 addition & 1 deletion Sources/Library/Views/WarningIcon.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import SwiftUI
struct VOWarningIcon: View {
var body: some View {
Image(systemName: "exclamationmark.triangle")
.font(.largeTitle)
.font(.title)
.foregroundStyle(Color.yellow400)
}
}
Expand Down

0 comments on commit cbddcec

Please sign in to comment.