JSFiddle - React, Tailwind, and code Playground

by Felype Rennan

HTML

<div class="motherbox">
<div class="child-box">

</div>
<div class="child-box">

</div>
</div>

SCSS

.motherbox {
  display: flex;
  justify-content: center;
  .child-box {
    width: 100px;
    height: 100px;
    background: red;
    margin:8px;
  }
}