JSFiddle - React, Tailwind, and code Playground
by Dogbert
HTML
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro" rel="stylesheet">
<div id="container">
<textarea></textarea>
<textarea></textarea>
</div>
CSS
body {
background: #272727;
margin: 0;
}
#container {
display: flex;
}
textarea {
flex: 1;
height: 90vh;
margin: 5vh 2vh;
border: none;
font-family: Source Code Pro;
padding: 5px 10px;
}