JSFiddle - React, Tailwind, and code Playground

by hutber

HTML

<ul class="formGroup">
		<li class="formItem text" title="title">
			<input type="text" value="Hilfe durchsuchen" id="search_help" name="search_help">
		</li>
		<li class="formItem button">
		    <button data-role="" name="submitButton" type="submit">Speichern</button>
		</li>
	</ul>

CSS

.formGroup {
        align-items: stretch;
        display: flex;
        justify-content: space-around;
        overflow: hidden;
        width: 100%;
        box-sizing: border-box;
    }
li {
    list-style: none outside none;
    background: #000;
    text-align: center;
}