Switch Grid Text Wrapping basics

I have a switch grid (4x), I want some of the label text to force wrap, when I try this I notice that the switch button with the wrapped text changes height. Is there anyway to fixed the height of the switch grid buttons so this does not happen.

What is the best way to add text labels to switch grids?

Any help will be greatly appreciated!

/* css property */
inner {
  grid-auto-rows: 25%;
}

will fix the cells' height to 25%

Thank you!!
Works perfect, appreciate the quick reply and help!