JSFiddle - React, Tailwind, and code Playground

HTML

<div class="wrapper">
    <div class="logo"></div>
    <div class="block"></div>
</div>

CSS

.wrapper {
    width: auto;
    height: 150px;
    border: #252525 solid 1px;
    padding: 5px;
}
.logo {
    width: 100px;
    height: 140px;
    float: left;
    border: #252525 solid 1px;
}
.block {
    width: 100px;
    height: 140px;
    float: right;
    border: #252525 solid 1px;
}