How to remove ion-Toolbar lift?

Asked

Viewed 407 times

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 positioned. I intend to remove the elevation from it but am not getting:

Code

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

Imagery

enter image description here

How to remove ion-Toolbar elevation?

1 answer

2


It seems that according to this link Toolbar just use the no-border, thus:

<ion-header no-border>
...
<ion-header>
  • 1

    So simple, it was there in the documentation. I think I rolled the scroll really fast. Vlw.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.