You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Current behavior:
When I use ion-button with the combination of attributes expand with value full and fill with value outline it results in a button with the left and right border of width 0 due to this CSS lines that apply to the ion-button shadow element:
:host(.button-full:not(.button-round)) .button-native { border-right-width: 0px; border-left-width: 0px; border-radius: 0px; }
The button-outline class should also be excluded from this selection.
Expected behaviour:
The outlined button should have the left and right border.
Steps to reproduce:
Use the code: <ion-button expand="full" fill="outline">The sad button</ion-button>