JSFiddle - React, Tailwind, and code Playground

HTML

<nav class="navbar navbar-default navbar-fixed-top">
      <div class="container">
      	<div class="navbar-brand">Booking</div>
        <div class="navbar-right">Back</div>
      </div>
    </nav>

CSS

.navbar {
	background-color: #0088CC;
	padding-left: 0em !important;
	padding-right: 0em !important;
}
.navbar-brand {
	color: #fff !important;
	padding-left: 0em !important;
	padding-right: 0em !important;
	text-align: center;
	margin: 0 auto !important;
	width: 100%;
	display: inline !important;
}
nav > .container {
	width: 100%;
}