So right now I'm using Simple Form with it's radio buttons in a field. Buttons are small for my UI and I want to customize them through css. How can I make buttons bigger? What should I add to .scss?
Here's a field in simple form containing radio buttons:
<%= f.collection_radio_buttons :shirtsize, [['XXL'], ['XL'], ['Large'] , ['Medium'], ['Small']], :first, :last %>
HTML output for each radio button is this one:
<label for="user_shirtsize_large">
<input type="radio" value="Large" name="user[shirtsize]" id="user_shirtsize_large">
<label class="collection_radio_buttons" for="user_shirtsize_large">Large</label>
</label>