JSFiddle - React, Tailwind, and code Playground

by John Doe

HTML

<div class="buttons">
    <button>Button1</button><button>Button2</button>
</div>

CSS

.buttons {
    width: 304px;
    margin: 0 auto;
    z-index: 9999;
    margin-top: 40px;
}
button::-moz-focus-inner {
    border: 0;
}
button {
    background-color: transparent;
    border: 1px solid dimgray;
    width: 150px;
    height: 40px;
    margin: -1px;
    cursor: pointer;
}