JSFiddle - React, Tailwind, and code Playground

by techappetite

HTML

<div id="wrapper">
    <div id="header">
        <div id="title">
            Library Catalog
        </div>
    </div>
</div>

CSS

body {
    font-family:Calibri;
    padding:0;margin:0;
}
#wrapper {
    width:100%;
}
#wrapper #header {
    width:100%;
    background-color:#6E6EFF;
    height:20px;
    color:white;
}