Skip to content

Commit

Permalink
style: changed text color
Browse files Browse the repository at this point in the history
  • Loading branch information
rnr committed Jul 29, 2024
1 parent b10c5c4 commit 8be1508
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion OpenEdX/View/MainScreenView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,11 @@ struct MainScreenView: View {
private var registerBanner: some View {
if viewModel.showRegisterBanner {
VStack {
SnackBarView(message: viewModel.registerBannerText, bgColor: Theme.Colors.accentColor)
SnackBarView(
message: viewModel.registerBannerText,
textColor: Theme.Colors.primaryButtonTextColor,
bgColor: Theme.Colors.accentColor
)
Spacer()
}.transition(.move(edge: .top))
.onAppear {
Expand Down

0 comments on commit 8be1508

Please sign in to comment.