JSFiddle - React, Tailwind, and code Playground

by Viet27th

HTML

<div class="bg-wait">
  <div class="bg-icon-wait">
    <span class="icon-wait"></span>
  </div>
</div>

CSS

.bg-wait {
  position: absolute;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bg-wait .bg-icon-wait {
  content: '';
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, .9);
  border-radius: 5px;
  display: inline-block;
}

.bg-wait .icon-wait {
  display: inline-block;
  width: 50px;
  height: 50px;
  background-image:...