JSFiddle - React, Tailwind, and code Playground

by igalst

HTML

<div id="wrapper">
    <div id="social">
        social btns here
    </div>
    rest of the page content goes here
</div>

CSS

#wrapper {
    width: 980px;
    margin: 0 auto;
}

#social {
    position: fixed;
    top: 50%;
    right: -200px;
    margin-top: -150px;
    width: 150px;
    height: 300px;
}