JSFiddle - React, Tailwind, and code Playground

by spitfire378

HTML

<div class="parent">
  <div style='width:150px'>test</div>
  <div style='width:130px'>test</div>
  <div style='width:120px'>test</div>
</div>

SCSS

.parent {
  display: flex;
  
  @media (max-width: 767px) {
    flex-direction: column;
  }
}