JSFiddle - React, Tailwind, and code Playground

by mazlix

HTML

<div class="container">
    Folder 1
    <div class="inner2">
    </div>
</div>

CSS

div.container {
    text-align:center;
    width:300px;
    border-radius:20px;
    background:#a00;
       box-shadow:2px 2px 5px 2px #222;
    overflow:hidden;
}
div.inner2{
    height:200px;
    width:300px;
    background:#222;
    border-top-right-radius:10px;
    border-top-left-radius:10px;
}