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
Currently, the navbar is set to fixed, so it doesn't occupy space in the layout. As a result, when content overflows vertically, it appears behind the navbar, and the page content is not properly centered. While removing the fixed positioning would fix this issue, we need the navbar to stay visible while scrolling. We should research solutions for this.
Example on login page 680x410:
Desired outcome:
The text was updated successfully, but these errors were encountered:
Considering that the navbar should be visible at all times, from my point of view, there are 2 options:
Negative Margin
Background Color Opaque
By changing the main's div class margin to mt-20 -mb-10 md:mb-20
By adding height breakpoints to the tailwind.config file and then adding the following classes to the navbar bg-vivid-red-900 backdrop-blur-sm bg-opacity-80 and h-sm:bg-opacity-0 h-sm:backdrop-blur-none
Currently, the
navbar
is set tofixed
, so it doesn't occupy space in the layout. As a result, when content overflows vertically, it appears behind thenavbar
, and the page content is not properly centered. While removing the fixed positioning would fix this issue, we need the navbar to stay visible while scrolling. We should research solutions for this.Example on login page 680x410:
Desired outcome:
The text was updated successfully, but these errors were encountered: