Reputation: 11
I am trying to make a page with only 3 buttons in Ionic. I use:
<button class="botton ion-button block"> Production </button>
And the button resizes in width but not in height. I want it to fill all the space available. How can I do that? Thanks.
Upvotes: 1
Views: 229
Reputation: 418
It's hard to tell exactly without knowing which display you are using, but usually to make an element fill the whole height, you would use
.ion-button {
height: 100%;
}
Upvotes: 1