chore: Header docz page examples (#1586)

* Creating Header example

* Improve NavBag example page

* Fixing callouts
This commit is contained in:
Gustavo André Lelis 2020-04-01 10:54:15 -03:00 committed by James A. Petts
parent 1150e5a1a4
commit 5541fb1f4b
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ const NavBar = ({ className, children }) => {
return (
<div
className={classnames(
'flex flex-row items-center bg-custom-navy px-3 py-1 sticky top-0 z-10',
'flex flex-row items-center bg-custom-navy px-3 py-1 sticky top-0 z-10 border-b-4 border-black',
className
)}
>

View File

@ -12,7 +12,7 @@ function Header({ appLogo = OHIFLogo(), children, t }) {
};
return (
<NavBar className="justify-between border-b-4 border-black">
<NavBar className="justify-between">
<div className="flex items-center">
<div className="mx-3">{appLogo}</div>
<div>{children}</div>