I have used the global.scss to apply the style and it works:
.searchbar-input {
border-radius: 10px !important;
box-shadow: none !important;
color: #000 !important;
}
However when I apply the same style to my home.page.scss it doesnt work
Here is my html :
<ion-content
><ion-toolbar color="primary">
<ion-searchbar ></ion-searchbar>
</ion-toolbar>
<div class="ion-padding">
The world is your oyster.
<p>
If you get lost, the
<a target="_blank" rel="noopener" href="https://ionicframework.com/docs/"
>docs</a
>
will be your guide.
</p>
</div>
</ion-content>
Is there anyway I can apply the style to the home.page.scss and having it work?