JSFiddle - React, Tailwind, and code Playground
HTML
<div id="wrapper">
<div id="content" ></div>
</div
CSS
#wrapper {
width:90%;
margin:0 auto;
height:400px;
background: #fff;
padding:20px;
border: 1px solid blue;
min-width: 850px;
}
#content {
min-width:400px;
width: 54%;
height:400px;
margin-right:3%;
border:1px solid green;
}
#sidebar {
width:350px;
float:right;
margin-right:3%;
height:400px;
border:1px solid yellow;
}