You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now that breaks the scroll in other places, so the main part of this ticket will be adding the overflow: "auto" to the specific components that should have it (below the nav bar) after making this change. For example the dashboard landing page no longer scrolls.
Make sure to check mobile and desktop.
The text was updated successfully, but these errors were encountered:
I think this can be done in the Next.js config... it's what I did on the map, maybe makes sense to always use the same solution for the problem? (instead of multiple solutions for the same problem)
Good point, I found the `variant: "full-width" after I wrote this. We should def see if there are other pages that should have this though still I think!
We have scroll set to the whole app rather than just in the scrollable components. This means even the nav bar scrolls, which is not what we want.
See what I mean on desktop here:
On mobile here:
We should add
overflow: "hidden" to the global html and body css in
AppRoute.tsx` like this:Right now that breaks the scroll in other places, so the main part of this ticket will be adding the
overflow: "auto"
to the specific components that should have it (below the nav bar) after making this change. For example the dashboard landing page no longer scrolls.Make sure to check mobile and desktop.
The text was updated successfully, but these errors were encountered: