JSFiddle - React, Tailwind, and code Playground
by iBertel
HTML
<div class="button">
<span class="like-count">326</span>
<div class="multi-button">
<span class="like"></span>
<span class="title">#<span>Title</span></span>
<span class="favorites"></span>
</div>
</div>
SCSS
.button {
position: relative;
display: inline-block;
}
.multi-button {
background-color: #F20;
padding: 5px;
overflow: hidden;
margin-left: 32px;
}
span {
display: block;
float: left;
}
.like-count {
position: absolute;
top: 5px;
left: 0;
width: 30px;
line-height: 30px;
background-color: #567;
text-align: center;
font-size: 11px;
color: #fff;
}
.like {
width: 30px;
height: 30px;
background-color: #fff;
}
.title {
background-color: #efefef;
line-height: 30px;
text-align: center;
padding:0 10px;
}
.favorites {
width: 30px;
height: 30px;
background-color: #fff;
}