JSFiddle - React, Tailwind, and code Playground
by yash009
HTML
<div class="franchisePlaceAverage">
<div class="row">
<div class="star"></div>
<div class="text">Some long text here Some long text here Some long text here Some long text here </div>
</div>
<div class="row">
<div class="star"></div>
<div class="text">Some short text here </div>
</div>
</div>
CSS
.franchisePlaceAverage {
width: 450px;
border: 4px solid #93d5ab;
}
.franchisePlaceAverage .row {
display: flex;
width: 100%;
align-items:center;
margin: 20px 0
}
.franchisePlaceAverage .star{
width: 20px;
flex-shrink:0;/* don't shrink me */
/* min-width: 20px; would also work */
height: 19px;
margin: 10px 28px;
background: tomato;
}
.franchisePlaceAverage .text {
}