JSFiddle - React, Tailwind, and code Playground

by JakobJingleheimer

HTML

<header>
  <div class="tooltip-container">
    <button>Give</button>
    <div class="menu">
      Menu
    </div>
  </div>
</header>

<div class="body">
Brunch tote bag cray, godard marfa blog actually taxidermy food truck 3 wolf moon etsy af. Etsy salvia umami wolf, authentic pug readymade normcore. Ennui tattooed selvage scenester, +1 echo park four loko pickled snackwave woke offal retro. Sartorial pabst you probably haven't heard of them fashion axe roof party listicle woke man braid, live-edge activated charcoal twee. Pickled small batch tumeric chicharrones ethical. Paleo scenester ethical prism, cliche hammock trust fund. Copper mug pitchfork microdosing dreamcatcher fanny pack.
</div>

<div class="overlay">
</div>

CSS

header {
  position: relative;
}

.tooltip-container {
  position: relative;
  z-index: 10;
}

.menu {
  background-color: white;
  bottom: 0;
  left: 0;
  position: absolute;
  transform: translateY(100%);
}

.overlay {
  background-color: #333;
  bottom: 0;
  left: 0;
  opacity: 0.5;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 5;
}