frontend-monorepo-680: Bring explorer nav colours in line with theme (#681)

This commit is contained in:
Sam Keen 2022-06-29 17:37:39 +01:00 committed by GitHub
parent bd18759e5e
commit 19980e5fb1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -28,9 +28,10 @@ export const Nav = ({ menuOpen }: NavProps) => {
className={({ isActive }) =>
classnames(
'block mb-8 px-8',
'text-h5 hover:bg-vega-yellow hover:text-black',
'text-h5 hover:bg-vega-pink dark:hover:bg-vega-yellow hover:text-white dark:hover:text-black',
{
'bg-vega-yellow text-black': isActive,
'bg-vega-pink text-white dark:bg-vega-yellow dark:text-black':
isActive,
}
)
}