JSFiddle - React, Tailwind, and code Playground

HTML

<div class="outer">
    <div class="inner"></div>
</div>

CSS

.inner {
    height     : 120px;
    width      : 120px;
    box-shadow : inset 0px 1px 5px black;
    position   : relative;
    left       : -10px;
}

.outer {
    position : relative;
    width    : 100px;
    height   : 100px;
    overflow : hidden;
}