JSFiddle - React, Tailwind, and code Playground

by Aaron von Schassen

HTML

<header>
  <div>
    MenĂĽpunkte
  </div>
  <img src="https://www.google.de/images/branding/googlelogo/2x/googlelogo_light_color_272x92dp.png" alt="">
</header>

CSS

header {
  display: flex;
  justify-content: space-between;
  background: red;
  width: 100%;
  align-items: center;
}

img {
  height: 30px;
}