In our app we have an ion-header and an ion-footer with a blue background for the header and an orange background for the footer for branding purposes. I set the background color using:
$toolbar-background: $blue;
Then I overrode the color in the footer with the following SCSS:
ion-footer, ion-toolbar {
ion-title{
text-align: center;
background-color: $orange !important;
}
}
This works when using ionic serve
in Chrome and on IOS but on Android it renders like the image below. Does anyone know a way around this?