JSFiddle - React, Tailwind, and code Playground

by ian_smithz

HTML

<div class="circle"> </div>
<div class="circle"> </div>
<div class="circle"> </div>
<div class="circle"> </div>

CSS

.circle {
  width: 21px;
  height: 21px;
  display: inline-block;
  border-radius: 50%;
    border: 1px solid #c5c5c5;
    box-shadow: inset 0px 7px 5px #f8f8f8;
}

body {
  background: #fff
}