diff --git a/src/app/PageLayout.js b/src/app/PageLayout.js index 6163ea4..2d3cc0e 100644 --- a/src/app/PageLayout.js +++ b/src/app/PageLayout.js @@ -191,9 +191,10 @@ function NavButtons() { const NavButton = React.forwardRef(({ icon, ...props }, ref) => { const Component = icon ? IconButton : Button; + + // Opacity is in a separate Box, to avoid overriding the built-in Button + // hover/focus states. return ( - // Opacity is in a separate Box, to avoid overriding the built-in Button - // hover/focus states.