JSFiddle - React, Tailwind, and code Playground

HTML

<div id="cont">
<div class="folder">
 Folder
<div class="file"> file </div>
<div class="file deleted">file deleted</div>
    
</div>
<div class="folder deleted">
 Folder deleted    
</div>

</div>

CSS

#cont{margin:20px;}
.folder, .file
{
    background:#66d61b;
    cursor: pointer;
    cursor: hand;
    display: inline;
    padding-top: 1px;
    padding-bottom: 1px;
    border-radius: 4px;
    color: #FFFFFF;
}


.folder.deleted, .file.deleted
{
    color: #707070;

}