JSFiddle - React, Tailwind, and code Playground

HTML

<body>
    <div class="child1">Жёлтый блок</div>
    <div class="child2">Розовый блок</div>
</body>

CSS

body {
    background:cyan;
    padding: 0px;
    margin: 0px;
}
.child1, .child2 {
    width: 66%;
    min-height: 55px;
    margin: 10px;
}
.child1 {
    background-color: #fefd8f;
    margin-bottom: 10px;
}
.child2 {
    background-color: #f6ccfc;
    margin-left: auto;
}