nav bar: dark background, no shadow

This commit is contained in:
mantikoros 2021-12-31 13:31:41 -06:00
parent 41a011a9bb
commit 6eda71286c
2 changed files with 2 additions and 8 deletions

View File

@ -22,14 +22,7 @@ export function NavBar(props: {
const themeClasses = clsx(darkBackground && 'text-white', hoverClasses)
return (
<nav
className={clsx(
'w-full p-4 mb-4 shadow-sm',
!darkBackground && 'bg-white',
className
)}
aria-label="Global"
>
<nav className={clsx('w-full p-4 mb-4', className)} aria-label="Global">
<Row
className={clsx(
'justify-between items-center mx-auto sm:px-4',

View File

@ -7,6 +7,7 @@ export function Page(props: { wide?: boolean; children?: any }) {
return (
<div>
<NavBar wide={wide} />
<div
className={clsx(
'w-full px-4 pb-8 mx-auto',