JSFiddle - React, Tailwind, and code Playground
by Neeraj Yadav
HTML
<div class="success-bg">
<div class="loader-text">
Loading...
</div>
</div>
CSS
.success-bg {
background-color: lightgrey;
min-height: 100vh;
height: 100%;
}
.loader-text {
color: #333333;
font-family: "McKinsey Sans Light";
font-size: 2rem;
text-align: center;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: center;
}