JSFiddle - React, Tailwind, and code Playground

HTML

<div class="container">
    <div class="title">
        Lorem ipsum dolor sit amet, consectetur adipisicing elit.
    </div>
    <div class="buttons">
        <div></div>
        <div></div>
        <div></div>
    </div>
</div>

CSS

.container {
    background: #AAA;
    display: flex;
    height: 30px;
    white-space: nowrap;
}
.container > div {
    display: inline-flex;
}
.title {
    overflow: hidden;
    text-indent: 15px;
	text-overflow: ellipsis;
    flex-shrink: 0;
}
.buttons {
    background: #777;
    width: 100%;
    justify-content: space-around;
}
.buttons div {
    background: green;
    height: 25px;
    margin: 0 5px;
    vertical-align: top;
    width: 25px;
}