JSFiddle - React, Tailwind, and code Playground
HTML
<body>
<div id="milestone">
<div id="milestonecontent">
<div id="event">
</div>
</div>
<div class="actions">
</div>
</div>
</body>
</html>
CSS
#body{
background-color: #e9eaed;
}
#milestone{
height: 137px;
background-color: blue;
}
#milestonecontent{
height: 104px;
padding-top:20px;
background-color: green;
}
#event{
margin: 0 auto;
width: 300px;
height: 58px;
background-color: red;
}
.actions{
border-top: 1px solid #e9eaed;
height: 33px;
background-color: grey;
}