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
Can you explain why you chose your breakpoint definitions (s <= 550px, m >= 551 && m <= 850 and l >= 851)? Why not align with popular frameworks like Tailwind or Bootstrap?
The text was updated successfully, but these errors were encountered:
@gskyarts If you mean the breakpoint on the ColumnLayout component: This component should be used to align content, and not to build the main app layout. We choose to use container queries for this use case, because the actual screen size does not matter from a component view.
Also the breakpoints used in the container queries should not be mixed up with the standard breakpoints used in media queries to detect different screen sizes (tablet, desktop, mobile).
Does this answer your question?
mfal
changed the title
Can you explain why you chose your breakpoint definitions (s <= 550px, m >= 551 && m <= 850 and l >= 851)? Why not align with popular frameworks like Tailwind or Bootstrap?
Can you explain why you chose your breakpoint definitions
Oct 22, 2024
Can you explain why you chose your breakpoint definitions (
s <= 550px
,m >= 551 && m <= 850
andl >= 851
)? Why not align with popular frameworks like Tailwind or Bootstrap?The text was updated successfully, but these errors were encountered: