JSFiddle - React, Tailwind, and code Playground

by Greg Bowler

HTML

<input type="datetime-local" name="datetime" />

CSS

input {
  font-size: 1rem;
	box-sizing: border-box;
	padding: 0.5rem;
	border: 1px solid rgba(0, 0, 0, 0.15);
	cursor: text;
	width: 14em;
	height: 2.5em;
	background: white;
  
  &:focus {
		outline: 2px solid $col-brand;
		outline-offset: 0px;
	}
}