JSFiddle - React, Tailwind, and code Playground

by Fernando Leal

HTML

<div class="center">
  Centro
</div>

SCSS

.center{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100px;
    height: 100px;
    background: red;
}