JSFiddle - React, Tailwind, and code Playground

Date picker responsiveness

by tonytlwu

HTML

<h2>Date <span>V</span></h2>
<div class="column">
  <div class="date-pickers">
    <input type="date" />
    to
  </div>
  <div class="col2">
    <input type="date" />
    <button>Reset</button>
  </div>
</div>

CSS

body {
  margin: 35px;
}
h2 {
  border-bottom: 1px solid;
}

h2 span {
  float: right;
  font-family: Arial;
  font-size: 14px;
  margin-right: 8px;
}

.date-pickers {
  display: inline-block;  
}

.col2 {
  display: inline-block;
}