diff --git a/frontend/src/components/Navbar.jsx b/frontend/src/components/Navbar.jsx index e409339..db8bc91 100644 --- a/frontend/src/components/Navbar.jsx +++ b/frontend/src/components/Navbar.jsx @@ -207,6 +207,12 @@ export default function Navbar({ onSignIn, onRegister, onSearch }) { // The section bar is wanted when you decide to go elsewhere and in the way // every other moment, so it leaves on the way down and returns on the way up. const sectionBarHidden = useHidingBar() + // Bringing the bar back without scrolling for it. The row hides while you + // read, which is right, but the only way to see it again was to scroll up — + // no use to a reader who is looking for the way out of the page they are on + // rather than the way back up it. Hovering the logo peeks it back; leaving + // the header lets it go again. + const [peek, setPeek] = useState(false) // Registered by the quiz player while it is on screen without a rail. const sessionDrawer = useSessionDrawer() const [jobs, setJobs] = useState([]) @@ -270,12 +276,13 @@ export default function Navbar({ onSignIn, onRegister, onSearch }) { ] : [] return ( -