Currently, I am working on an application using ionic2. My goal is to customize the appearance of the menuToggle
button by changing the background color to creme/white and the color of the three lines to black. The code for the button can be found below:
<ion-col col-2>
<button ion-button menuToggle
small *ngIf="Buttonclicked"
(click)="editdata(item)"><ion-icon name="menu"></ion-icon>
</button>
</ion-col>
I would appreciate any guidance or assistance on how to achieve this desired customization.