Skip to content
New issue

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

Consider making the top bar stick to the navigation #176

Open
FireIsGood opened this issue Jan 18, 2025 · 0 comments
Open

Consider making the top bar stick to the navigation #176

FireIsGood opened this issue Jan 18, 2025 · 0 comments
Labels
enhancement New feature or request

Comments

@FireIsGood
Copy link

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!

@syeopite syeopite added the enhancement New feature or request label Jan 18, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants