JSFiddle - React, Tailwind, and code Playground
HTML
<div class="loading">
<div class="loading-holder">
Loading
</div>
</div>
CSS
.loading{
width: 100%;
height: 100%;
background-color: #f00;
position: absolute;
top: 0;
right: 0;
bottom: 0;
bottom: 0;
}
.loading-holder{
width: 60px;
height: 60px;
background-color: #fff;
margin: auto;
text-align: center;
line-height: 30px;
position: absolute;
top: 0;
right: 0;
left: 0;
bottom: 0;
}