JSFiddle - React, Tailwind, and code Playground

by Qwerty_Wasd

HTML

<div class="wrapper">
  <button>Description</button>
  <input type="text">
</div>

CSS

*{
  box-sizing:border-box;
}
.wrapper{
  display:grid;
  grid-template-columns: auto 1fr;
}