How to remove ion-toolbar elevation?

0

The following code below 'builds' a toolbar at the top of the application / page. Basically a ion-toolbar within a header that is fixed. I want to remove the elevation from it but I can not:

Code

<ion-header>
  <ion-toolbar >
    <button ion-button menuToggle>
      <ion-icon name="menu"></ion-icon>
    </button>
    <ion-title></ion-title>
  </ion-toolbar>
</ion-header>

Image

How to remove the elevation of the ion-toolbar?

    
asked by anonymous 10.02.2017 / 01:33

1 answer

1

It seems like this link Toolbar just use no-border , so :

<ion-header no-border>
...
<ion-header>
    
10.02.2017 / 01:53