JSFiddle - React, Tailwind, and code Playground

by psyon001

HTML

<div class="align">
  <div>Hello</div>
</div>

SCSS

div {
  border: 1px solid red;
}

.align {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  > * {
    max-width: 50% //otherwise it would be full width
  }
}