profile: show white circle on buttons in dark mode
This commit is contained in:
@@ -146,7 +146,7 @@ struct ProfileView: View {
|
|||||||
}) {
|
}) {
|
||||||
Image(systemName: "bolt.circle")
|
Image(systemName: "bolt.circle")
|
||||||
.symbolRenderingMode(.palette)
|
.symbolRenderingMode(.palette)
|
||||||
.foregroundStyle(colorScheme == .dark ? .white : .black, .black)
|
.foregroundStyle(colorScheme == .dark ? .white : .black, colorScheme == .dark ? .white : .black)
|
||||||
.font(.system(size: 32).weight(.thin))
|
.font(.system(size: 32).weight(.thin))
|
||||||
.contextMenu {
|
.contextMenu {
|
||||||
Button {
|
Button {
|
||||||
@@ -174,7 +174,7 @@ struct ProfileView: View {
|
|||||||
Image(systemName: "bubble.left.circle")
|
Image(systemName: "bubble.left.circle")
|
||||||
.symbolRenderingMode(.palette)
|
.symbolRenderingMode(.palette)
|
||||||
.font(.system(size: 32).weight(.thin))
|
.font(.system(size: 32).weight(.thin))
|
||||||
.foregroundStyle(colorScheme == .dark ? .white : .black, .black)
|
.foregroundStyle(colorScheme == .dark ? .white : .black, colorScheme == .dark ? .white : .black)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user