JSFiddle - React, Tailwind, and code Playground

by tonyleeper

HTML

<div class="box" tabindex="0">
    <input type="text" class="date-picker" />
</div>

CSS

.box {
    width: 500px;
    height: 500px;
}

.box:focus {
    background-color: blue;
}