JSFiddle - React, Tailwind, and code Playground

by WILLIAM CORREA

HTML

<div class="popUp">
  <i class="fa fa-spinner fa-lg rotating"></i>	Wait, are finishing
</div>

CSS

.popUp{
    position:fixed;
    top:50%;
    left:50%;
    height:50px;
    margin-top:-25px;
    width:300px;
    margin-left:-150px;
    background-color:#7E7E7E;
    border-radius:4px;
    text-align:center;
    line-height:50px;
    color:#fff;
    display:block;
}