-
Notifications
You must be signed in to change notification settings - Fork 0
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
scroll bar disappears when you press the hamburger button on navbar #51
Comments
branch: https://github.com/codeandcognition/koconut/tree/bug51/nav-button merge to summer2018-master: 2eeb30f Functionality is still a bit off. There may be some workarounds that are required to make it seamless. It could also be part of the regular page size having a horizontal scroll on it. see: mui/material-ui#5185 and mui/material-ui#8710 Also, I discovered this in a different project, but moving the menu that comes up is done by these lines of code: anchorOrigin={{
vertical: 45, // TODO RENAME THIS CONSTANT
horizontal: 'left',
}}
transformOrigin={{
vertical: 'top',
horizontal: 'left',
}}
getContentAnchorEl={null} 45 is the pixel height to move the menu down (currently, it's roughly the height of the button.)
|
There is a further issue where the bottom horizontal scroll bar persists on windows whereas on a mac it doesn't seem to appear. This MAY have something to do with the windows chrome scroll bar being solid and non-floating vs mac's floating scroll bar that hides itself. |
I fixed the horizontal scroll bar persisting, it was a matter of changing App's css to have the width be This allowed me to pinpoint that the Will continue to look. |
mui/material-ui#6022 possible fix, or we could just not use material ui for this button. |
Seems to have iffy functionality.
The text was updated successfully, but these errors were encountered: