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
Its possible to create a sticky footer with this library? I have been trying different solutions but any seems to work properly. If I set layout container to "display: flex; flex-direction: column; min-height: 100vh;" so content row has "flex: 1" in order to extend to fill the vertical space.... fluid containers shrink. Any recommended examples for compatibility I see use grid or flex, but the combination of display block and flex this library uses makes difficult to do this basic layout.
I have been checking the documentation but there is no mention to vertical spacing, everything is focused on cols.
I have something like this. The combination of container fluid and container is to be able to have a full width background for header, and menu items boxed in container width of 1300px for example.
The idea is that contentContainer expands vertically so footer is sticky at the bottom of the viewport, so there is no space below the footer.
I just saw the problem was "margin-left: auto; margin-right: auto" in container fluid styles. Overwriting them with "margin: 0 !important;" with a className, allowed me to use the grid approach.
Is there a prop to prevent that style from applying?
Hello!
Its possible to create a sticky footer with this library? I have been trying different solutions but any seems to work properly. If I set layout container to "display: flex; flex-direction: column; min-height: 100vh;" so content row has "flex: 1" in order to extend to fill the vertical space.... fluid containers shrink. Any recommended examples for compatibility I see use grid or flex, but the combination of display block and flex this library uses makes difficult to do this basic layout.
I have been checking the documentation but there is no mention to vertical spacing, everything is focused on cols.
I have something like this. The combination of container fluid and container is to be able to have a full width background for header, and menu items boxed in container width of 1300px for example.
The idea is that contentContainer expands vertically so footer is sticky at the bottom of the viewport, so there is no space below the footer.
I dont know if I am maybe using the library wrong.
Many thanks!
The text was updated successfully, but these errors were encountered: