I am trying to simply show a text input field and a button in one line with semantic ui. For some reason the elements are not aligned properly and I can't figure out the css property that is responsible for this:
<div id="filter-input" class="ui left icon input">
<i class="search icon"></i>
<input type="text">
</div>
<div class="ui button">Test</div>
Update: Corrected closing tag on last div.