diff --git a/src/app/GlobalHeader.js b/src/app/GlobalHeader.js index 8b39501..5155a3a 100644 --- a/src/app/GlobalHeader.js +++ b/src/app/GlobalHeader.js @@ -42,9 +42,15 @@ function HomeLink(props) { display="flex" alignItems="center" role="group" + // HACK: When we're on the homepage, I want the title "Dress to Impress" + // to stay visible for transition, but I don't want it to be a + // click target. To do this, I constrain the size of the container, + // and also remove pointer events from the overflowing children. + maxWidth={isHomePage ? "32px" : "none"} {...props} > @@ -86,6 +93,7 @@ function HomeLink(props) { />