JSFiddle - React, Tailwind, and code Playground

by Valentin Sarychev

HTML

<ul>
    <li><div></div></li>
    <li><div></div></li>
    <li><div></div></li>
    <li><div></div></li>
</ul>

CSS

ul {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    height: 50px;
}

li {
    list-style: none;
    padding: 5px;
}

li div {
    width: 20px;
    height: 20px;
    background: red;
    transition: ease-out .2s;
}

li:hover div {
    width: 50px;
    height: 50px
}