JSFiddle - React, Tailwind, and code Playground

by ctpz

HTML

<div id="side">
    <p>
        <p></p>
    </p>
</div>

CSS

#side{
    width: 150px;
    height: 400px;
    background: silver;
}

#side p{
    border-radius: 15px;
    border: 4px solid #e6e6e6;
    height: 396px;
}

#side p p{
    border-radius: 13px;
    border: 4px solid #000000;
    height: 392px;
}