JSFiddle - React, Tailwind, and code Playground

by huskydawgs

HTML

<div class="circle-gray rtecenter">
						<span class="number">1</span></div>

CSS

.circle-gray {
    border-radius: 100%;
    height: 2em;
    width: 2em;
    text-align: center;
    background: #616161;
    margin: 0 auto;
}

.circle-gray .number {
    margin-top: 0.10em;
    font-size: 1.5em;
    font-weight: bold;
    font-family: sans-serif;
    line-height: 1.4em;
    color: #ffffff;
}

.rtecenter {
  text-align: center;
}