diff --git a/landing/header.css b/landing/header.css --- a/landing/header.css +++ b/landing/header.css @@ -24,10 +24,14 @@ .tab { font-size: 24px; - font-weight: 400; - color: var(--unselected); + font-weight: 500; + color: #808080; font-family: 'IBM Plex Sans', sans-serif; - transition: 300ms; + transition: 150ms; + transition-property: color; +} +.tab:hover { + color: #ffffff; } .page_nav { diff --git a/landing/header.react.js b/landing/header.react.js --- a/landing/header.react.js +++ b/landing/header.react.js @@ -21,7 +21,6 @@ className: css.tab, activeStyle: { color: 'white', - fontWeight: '500', }, };