I need to get rid of the padding: 0 90px 1px property that gets applied to the ion-title element for ios. My windows and Android header looks fine but for ios because of the 90px padding on the right causes my text to get truncated. How can i override this in ionic2?
toolbar-ios ion-title {
position: absolute;
top: 0;
left: 0;
padding: 0 90px 1px;
width: 100%;
height: 100%;
-webkit-transform: translateZ(0);
transform: translateZ(0);
pointer-events: none;