JSFiddle - React, Tailwind, and code Playground

by SpAm

HTML

<div id="wrapper">
  <div class="child" style="background-color:blue;flex-grow:1;flex-basis:100px;">
    asdasd
  </div>

</div>

CSS

#wrapper {
  display:flex;
  flex-direction:row;
  background-color:green;
}

.child {
  background-color:red;
  flex-grow:0;
}