JSFiddle - React, Tailwind, and code Playground

by Ben Clayton

HTML

<div class="wrapper">
<div class="box0">+[][][][][][][][][][][][][][]</div>
<div class="box1">[][][]</div>
<div class="box2">[][][][]</div>

</div>

CSS

.wrapper {
	display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.wrapper > div {
	height: 25px;
  border: 1px solid red;
  padding: 10px;
}