JSFiddle - React, Tailwind, and code Playground

by damir aushenov

HTML

<div id="wrap">
<span class="thuesday">thuesday</span>
<p>31</p>
    </div>

CSS

#wrap {
    width:60px;
    height: 60px;
    
    
}
span.thuesday {
    display: block;
    background:#d94800;
    border-radius: 10px 10px 0 0;
    font-size:10px;
    text-align: center;
    color:white;
  
    
}
p {
    background: #dcdcdc;
    margin:0;
    padding:0;
    
    text-align: center;
    font-size:40px;
    
    
}