JSFiddle - React, Tailwind, and code Playground
by Victor
HTML
<div class="rows">
testing
</div>
SCSS
.rows {
border: 1px solid red;
&__row {
}
display flex;
width: 100%;
&__col {
flex: 0;
&--stretch {
flex: 1;
}
}
}
}