diff --git a/Modules/Sources/Browse/UI/Toolbars/BrowseToolbar.swift b/Modules/Sources/Browse/UI/Toolbars/BrowseToolbar.swift index a76540e..19b5582 100644 --- a/Modules/Sources/Browse/UI/Toolbars/BrowseToolbar.swift +++ b/Modules/Sources/Browse/UI/Toolbars/BrowseToolbar.swift @@ -58,7 +58,10 @@ struct BrowseToolbar: ToolbarContent { ) } icon: { Image.add - .foregroundColor(.red) + .resizable() + .scaledToFit() + .frame(width: 24, height: 24) + .tint(.red) } } } @@ -75,7 +78,10 @@ struct BrowseToolbar: ToolbarContent { ) } icon: { Image.profile - .foregroundColor(.red) + .resizable() + .scaledToFit() + .frame(width: 24, height: 24) + .tint(.red) } } } diff --git a/Modules/Sources/Login/UI/Styles/LogInLabelStyle.swift b/Modules/Sources/Login/UI/Styles/LogInLabelStyle.swift index a025527..7601885 100644 --- a/Modules/Sources/Login/UI/Styles/LogInLabelStyle.swift +++ b/Modules/Sources/Login/UI/Styles/LogInLabelStyle.swift @@ -15,10 +15,8 @@ struct LogInLabelStyle: LabelStyle { configuration.title .font(.body) - .foregroundColor(.primary) configuration.icon - .tint(.primary) Spacer() } diff --git a/Modules/Sources/Profile/UI/Views/ProfileView.swift b/Modules/Sources/Profile/UI/Views/ProfileView.swift index 5592c90..9e3b7fd 100644 --- a/Modules/Sources/Profile/UI/Views/ProfileView.swift +++ b/Modules/Sources/Profile/UI/Views/ProfileView.swift @@ -92,7 +92,6 @@ public struct ProfileView: View { ) .font(.body) .fontWeight(.semibold) - .foregroundColor(.primary) .frame(maxWidth: .infinity) } .tint(.red)