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
I think the section needs a 'flex-basis: auto' in the mq for stretching the section when the screen is getting smaller to prevent the content from overflowing.
The aim of this section was to show how the layout is achieved, without getting into making it fully usable/responsive.
Thank you for the note, though. @botelho could you please add that snippet to the Codrops editor/demo? It's not crucial like I said because it's not part of the objective of the section, but it could be nice to add.
I think the section needs a 'flex-basis: auto' in the mq for stretching the section when the screen is getting smaller to prevent the content from overflowing.
@media screen and (max-width:500px) {
.container {
flex-direction: column;
flex-basis: auto;
}
}
The text was updated successfully, but these errors were encountered: