JSFiddle - React, Tailwind, and code Playground
by smlombardi
HTML
<div class="pillwrapper">
<div class="circle">
</div>
</div>
CSS
.circle {
width: 100px;
height: 100px;
border-radius: 50px;
transition: width ease 0.3s;
background-color: red;
}
.pill {
transform: scaleX(2)
position: absolute;
right: 0
}
.pillwrapper {
position: relative
}
.circle {
position: absolute;
right: 0
}
JavaScript
$(".circle").on("click", function() {
$(".circle").toggleClass("pill");
});