JSFiddle - React, Tailwind, and code Playground

HTML

<select size="3">
  <option>Not Started</option>
  <option selected>In Progess</option>
  <option>Completed</option>
</select>

CSS

select{
    overflow:auto;
    width: 150px;
}