JSFiddle - React, Tailwind, and code Playground

by orjan

HTML

<nav>
  <div class="btn">
  test
</div>
</nav>

CSS

nav {
  background-color: green;
  height: 48px;
}
.btn {
  display: inline-block;
  background-color: blue;
  color: white;
  font-size: 16px;
  line-height: 48px;
  height: 48px;
  padding: 0 16px;
}