JSFiddle - React, Tailwind, and code Playground

HTML

<div class="container">
    <div class="container__left"></div>
    <div class="container__right"></div>
</div>

CSS

.container { float: left; width: 100%; }
.container__left { float: left; width: 380px; height: 100px; background: blue; }
.container__right { float: right; width: calc(100% - 380px); height: 100px; background: green; }