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
It would be convenient for the navbar to always be present at the top of the window to prevent unneeded scrolling for tall pages.
The following additional CSS accomplishes this pretty well for desktop. Not sure how it works on mobile.
nav.navbar { position: fixed; top: 0; width: 100%; z-index: 1; } /* the main container (may want to add extra specificity) */ .container { margin-top: 70px; }
The text was updated successfully, but these errors were encountered:
The navbar is already sticky on Android, it is set here:
aw-webui/src/components/Header.vue
Lines 107 to 108 in 4e64b61
Could be made configurable if desired.
Sorry, something went wrong.
Ah, I'm using the desktop web interface for Linux, and it's not sticky. Is this the right repo for that?
Yup, same code!
Could make it sticky on desktop as well, I'll look into it next time I'm poking around the code.
No branches or pull requests
It would be convenient for the navbar to always be present at the top of the window to prevent unneeded scrolling for tall pages.
The following additional CSS accomplishes this pretty well for desktop. Not sure how it works on mobile.
The text was updated successfully, but these errors were encountered: