I want to increase the height of Bootstrap select dropdown options. Is it possible to set a custom height for the option element?
My HTML code,
<div class="container">
  <div class="row">
    <div class="form-group">
      <label>Color</label> 
      <select class="form-control">
          <option value="r">Red</option>
          <option value="b">Blue</option>
          <option value="g">Green</option>
      </select>
    </div>
  </div>
</div>

