JSFiddle - React, Tailwind, and code Playground

by Codemonkey

HTML

<div class="sidebar">
    Click to hide
</div>

CSS

.sidebar
{
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    width: 250px;
    
    -webkit-transition: right 0.2s ease-out;
    -moz-transition: right 0.2s ease-out;
    transition: right 0.2s ease-out;
    
    cursor: pointer;
    background-color: cornflowerblue;
}

JavaScript

$('.sidebar').on('click', function() {
    $(this).css('right', -250);
});