JSFiddle - React, Tailwind, and code Playground

by nabtron

HTML

<div class="full-navigation">
<div class="nav">

</div>
<div class="nav-bot">

</div>

</div>

CSS

body{background:#fff}
.nav{height:50px;width:100%; background:black;}
.nav-bot{
    height: 50px;
    border-radius: 50%;
    margin-top: -19px;
    box-shadow: inset 0px 1px 0px 0px rgba(0,0,0,0.75);
    z-index:5;
    background-color: white;
}