JSFiddle - React, Tailwind, and code Playground

HTML

<div class="yoga" 
  style="width: 400px; height: 120px; background-color: white; flex-direction:row; justify-content: space-around">
  <div class="yoga" style="background-color: #cc0000; width: 80px;"></div>
  <div class="yoga" style="background-color: #0000cc; width: 80px; flex-grow: 1; margin-right: 10px"></div>
  <div class="yoga" style="background-color: #FFF000; width: 80px; "></div>
</div>

CSS

.yoga {
  box-sizing: border-box;
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex-shrink: 0;
  align-content: flex-start;
  justify-content: flex-start;

  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
  
  
}