JSFiddle - React, Tailwind, and code Playground
by kitsontam
HTML
<div class="rednumberCircle">30</div>
<div class="yellownumberCircle">1</div>
<div class="greennumberCircle">2</div>
CSS
.rednumberCircle {
border-radius: 50%;
width: 36px;
height: 36px;
padding: 1px;
background: red;
color: #fff;
text-align: center;
font: 32px Arial, sans-serif;
}
.yellownumberCircle {
border-radius: 50%;
width: 36px;
height: 36px;
padding: 1px;
background: yellow;
color: #fff;
text-align: center;
font: 32px Arial, sans-serif;
}
.greennumberCircle {
border-radius: 50%;
width: 36px;
height: 36px;
padding: 1px;
background: green;
color: #fff;
text-align: center;
font: 32px Arial, sans-serif;
}