JSFiddle - React, Tailwind, and code Playground
by Danilo Sousa
HTML
<div class="styled-select">
<select name="disciplina" id="disciplina">
<option>Here is the first option</option>
</select>
</div>
CSS
.styled-select select {
background: transparent;
width: 200px;
padding: 5px;
font-size: 14px;
line-height: 1;
border: 1px solid #CCC;
border-radius: 0;
height: 34px;
}