JSFiddle - React, Tailwind, and code Playground
HTML
<div class="a">
<div class="b"></div>
<div class="c"></div>
</div>
CSS
.a {
width: 200px;
border: solid 1px teal;
display: flex;
justify-content: space-between;
height: 40px;
padding: 10px;
}
.b {
width: 300px;
background-color: pink;
flex-grow: 0;
flex-shrink: 1;
border: solid 1px black;
}
.c {
width: 300px;
background-color: crimson;
flex-grow: 1;
flex-shrink: 0;
border: solid 1px blue;
}