JSFiddle - React, Tailwind, and code Playground
by kougiland
HTML
<div></div>
CSS
div
{
width: 100px;
height: 100px;
border-radius: 100%;
background: #EE6557;
position: relative;
margin: 100px auto;
padding:0;
}
div:before{
content:'';
position:absolute;
width:96px;
height:96px;
border:2px solid #EE6557;
border-radius:100%;
left:0;
top:0;
-webkit-transition: all 300ms ease;
}
div:hover:before
{
-webkit-transform:scale(1.2,1.2);
}