JSFiddle - React, Tailwind, and code Playground

by Gerlando Prado

HTML

<header>
    <img src="http://i.imgur.com/bPDxzrj.png" class="logo" />
</header>

CSS

*{
    margin:0;
    padding:0;
}

header{
    background:#1A70D5;
    width:100%;
    height:50px;
}

img{
    margin-top:-17px;
    top:50%;
    position:relative;
}