JSFiddle - React, Tailwind, and code Playground
HTML
<div class="container">
<div class="logo">Logo</div>
<div class="nav">Nav</div>
<div class="base">Base</div>
</div>
CSS
body {
margin: 0;
}
.container {
background: gold;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.nav{
background: black;
height: 100vh;
}