JSFiddle - React, Tailwind, and code Playground
HTML
<div class="button">
<div class="button-text">
Very long button text
</div>
</div>
CSS
.button {
width: 120px;
background: yellow;
text-align: center;
height: 30px;
}
.button-text {
line-height: 30px;
transform: scale(0.7, 1);
white-space: nowrap;
}