We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently the top bar does not stick to the top of the screen. As an infinite scroll type app, this makes the search bar unusable for a lot of the UI.
If you want to make it sticky it's basicllly like 5 lines, too:
.navbar { position: sticky; top: 0; box-shadow: 0 0 8px var(--color-background), 0 0 4px var(--color-background); z-index: 100; }
There's also a little box shadow included in that snippet, as a treat!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently the top bar does not stick to the top of the screen. As an infinite scroll type app, this makes the search bar unusable for a lot of the UI.
If you want to make it sticky it's basicllly like 5 lines, too:
There's also a little box shadow included in that snippet, as a treat!
The text was updated successfully, but these errors were encountered: