Aarej
Aarej

Reputation: 328

How to remove ionic 4 ion-searchbar show?

How to remove shadow from ionic 4 ion-search bar? i already tried no-border no-shadow but didn't achieve what i want.

<ion-searchbar
    no-border>
</ion-searchbar>
ion-searchbar{
    --box-shadow:none;
}

Upvotes: 0

Views: 531

Answers (1)

IQbrod
IQbrod

Reputation: 2265

You have to force it through !important

.searchbar-input {
    border: 0 !important;
    box-shadow: none !important;
}

From this post

Upvotes: 1

Related Questions