JSFiddle - React, Tailwind, and code Playground

by Pritam Bohra

HTML

<div class="input-wrapper">
  <input type="text" value="Hello">
</div>

CSS

html, body {
  height: 100%;
}

.input-wrapper {
  height: 100%;
}

input {
  width: 30%;
  height: 20%;
}