Framework 7 react remove navbar background color

I need to remove the white background color on andriod white and red on ios, tried multiple things, on instances one would appear as removed and other as not. (ps need to implement this within navbar) here is the code for creating the navbar.

<Navbar
title={
!this.state.tokenExpiredOrInvalid
? “Update Your Password”
: “Password Reset Url is expired or invalid”
}
>

you can use background color transparent

.bg-transparent{
      background-color: transparent !important;
}
2 Likes