JSFiddle - React, Tailwind, and code Playground
HTML
<div class="centeredPanel"></div>
CSS
.centeredPanel{
width:50px;
height:50px;
position:absolute;
left:50%;
top:50%;
margin-left:-25px;
margin-top:-25px;
background-color:red;
}