JSFiddle - React, Tailwind, and code Playground

by halirgb

HTML

<div class="under-construction-modal">
    <img src="http://bourjois.ca/under-construction.jpg" />
</div>

CSS

.under-construction-modal{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color:rgba(225,225,225, 0.5);
    left:50%;
    margin-left:-300px;
}
.under-construction-modal img{
    position:absolute;
    top:50%;
    margin-top:-100.5px;
}