JSFiddle - React, Tailwind, and code Playground
by fparent
HTML
<div class="parent">
<button class="button right">Button 1</button>
<button class="button right">Button 2</button>
</div>
CSS
.parent {
min-height: 20px;
background-color: #15e1ff;
padding-right: 100px;
}
.right {
float: right;
}
.button {
height: 40px;
}