ionic 2 - Remove Border Footer

Viewed 11493

I have a blue footer like this

<ion-footer align="center">
  <ion-toolbar>
    <ion-title>
...

But it is showing a shadow style border at the top. How can I remove it. I tried to inspect it but did not find anything.

2 Answers

In ionic 5 the built in class is slightly different I came across this recently and decided to post an update.

<ion-footer class="ion-no-border">
  <ion-toolbar>
    <ion-title>
      fsdfda
    </ion-title>
  </ion-toolbar>
</ion-footer>
Related