JSFiddle - React, Tailwind, and code Playground
by BoyWonder
HTML
<div id="sidebar"></div>
<div id="content"></div>
CSS
body{
padding-left:200px;
margin:0;
}
div#sidebar{
position:fixed;
height:100%;
width:200px;
top:0;
left:0;
background:grey;
}
div#content{
background:black;
width:100%;
height:1600px;
}