Having a display flex with three divs, which is a shared component among multiple teams, makes it challenging for me to edit.
My only option is to update the CSS. In the fiddle, the first part displays the current layout while the second part shows the expected layout.
Using CSS only, I am required to modify the following:
<div class="flex">
<div class="square blue">
x
</div>
<div class="square red">
x
</div>
<div class="square yellow">
x
</div>
</div>
In order to achieve the desired rendering as shown in the second html snippet (Refer to JSFiddle) :
<div class="flex">
<div class="square blue">
x
</div>
<div class="square">
<div class="square red">
x
</div>
<div class="square yellow">
x
</div>
</div>
</div>