JSFiddle - React, Tailwind, and code Playground
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;
}
}