JSFiddle - React, Tailwind, and code Playground

by mauricederegt

HTML

<div class="container">
  <div class="row logo">Logo</div>
  <div class="row nav">Nav</div>
  <div class="row 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;
  }
  .base{
  background: blue;
  height: 20vh;
  }