making nav more readable on various surfaces

This commit is contained in:
William Felker 2020-09-08 00:01:23 +08:00
parent f70f4678c5
commit 77eb12fee0

View File

@ -16,7 +16,7 @@ const STYLES_CONTAINER = css`
top: 0;
z-index: ${Constants.zindex.header};
height: 88px;
mix-blend-mode: difference;
@media (max-width: ${Constants.sizes.mobile}px) {
display: flex;
justify-content: space-between;
@ -176,7 +176,6 @@ const openNavLink = {
const NewWebsitePrototypeHeader = props => {
const [open, setOpen] = useState(false);
const navBurgerColor = this.props.color;
useEffect(() => {
window.addEventListener("resize", handleOpen);