JSFiddle - React, Tailwind, and code Playground
by NicoO
HTML
<div class="row">
<div class="column">
<div class="graph">Insert Graph</div>
</div>
</div>
CSS
body, html, .row
{
height: 100%;
margin:0;
}
.column
{
height: 30%;
position: relative;
}
.graph
{
position: absolute;
left:0;
right:0;
top:0;
bottom:0;
background-color: gray;
}