I'm encountering an issue where adding the ionic 2 gesture (press) to a button results in inline styles being automatically applied to that button.
Is there a way to override the styles it adds?
Button
<button ion-button (press)="toggleFavourite(sound)" (click)="share(sound.file)"></button>
The CSS added due to the (press) gesture.
style="
touch-action: none;
user-select: none;
-webkit-user-drag: none;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);"