Update nav to use adaptable color for dark and light modes

Changelog-Fixed: Fixed nav bar color on login, eula, and account creation
Closes: https://github.com/damus-io/damus/pull/1361
This commit is contained in:
ericholguin
2023-07-12 05:38:10 -07:00
committed by William Casarin
parent de63e96664
commit 5571052cfd
+1 -1
View File
@@ -107,7 +107,7 @@ struct BackNav: View {
@Environment(\.dismiss) var dismiss
var body: some View {
Image("chevron-left")
.foregroundColor(.white)
.foregroundColor(DamusColors.adaptableBlack)
.onTapGesture {
self.dismiss()
}