Commit 779a699f authored by Jordan Frankfurt's avatar Jordan Frankfurt Committed by GitHub

fix: don't include accentActiveSoft background on navicon active state (#5240)

don't include accentActiveSoft background on navicon active state
parent 02e5478c
......@@ -5,6 +5,7 @@ import { sprinkles, vars } from '../../nft/css/sprinkles.css'
export const navIcon = style([
sprinkles({
alignItems: 'center',
background: 'transparent',
position: 'relative',
display: 'flex',
flexDirection: 'column',
......
......@@ -14,7 +14,6 @@ export const NavIcon = ({ children, isActive, onClick }: NavIconProps) => {
<Box
as="button"
className={styles.navIcon}
background={isActive ? 'accentActiveSoft' : 'none'}
color={isActive ? 'textPrimary' : 'textSecondary'}
onClick={onClick}
height="40"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment