JSFiddle - React, Tailwind, and code Playground

by fest1val

HTML

<div class="flex">
  <div class="left">
    <div class="box"></div>
    <div class="box"></div>
    <div class="box"></div>
    <div class="box"></div>
  </div>
  <div class="right">
    <div class="box"></div>
    <div class="box"></div>
  </div>
</div>

CSS

.flex {
  display: flex;
	justify-content: space-between;
	align-items: center;
}

.box {
  background: red;
	width: 50px;
	height: 40px;
	margin: 0 5px;
}

.left, .right {
	display: flex;
	align-items: center;
}

.right {
  justify-content: flex-end;
}