I have a simple challenge to tackle,
I am seeking a way for my buttons to occupy 90% of the width of my columns in Ionic 2, regardless of the text content.
.button-pink {
color: #F63566;
background-color: white;
text-transform: uppercase;
font-size: 75%;
border: 2px solid #F63566;
padding: 6% 23%;
margin: auto;
white-space: nowrap;
text-align: center;
font-family: "SanFranciscoText-Regular";
font-weight: bold;
letter-spacing: 0.3em;
}
Despite the CSS styling provided above for my button, I am struggling to ensure that it fills the width of the column consistently without being affected by changes in text length.
Any assistance on this matter would be greatly appreciated. Have a wonderful day!