JSFiddle - React, Tailwind, and code Playground

by Ashish Kasama

HTML

<div class="pageWrapper">
    <div class="container">
        <div class="side-menu">
            Content
        </div>
    </div>
</div>

CSS

body, html { 
    height: 100%; 
    width: 100%; 
    margin: 0; 
    padding: 0; 
}

.pageWrapper { 
    overflow-x: hidden;
    min-width: 1200px;
    height: 100%;
}

.container {
    position: relative;
    width: 1170px;
    margin: 0 auto;
    height: 100%;
}

.side-menu {
    position: absolute;
    width: 80px;
    height: 300px;
}