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
The new Grid Breakpoints don't always render in the correct order. For example this is the output I get for breakpoints:
{
xs: "+10",
lg: "+1000",
xl: "+1301"
};
Because they are not output in the right order it means that the styles for breakpoint 1000px are never able to be used/applied due to css always using the last values in the css.
The text was updated successfully, but these errors were encountered:
The new Grid Breakpoints don't always render in the correct order. For example this is the output I get for breakpoints:
{
xs: "+10",
lg: "+1000",
xl: "+1301"
};
Because they are not output in the right order it means that the styles for breakpoint 1000px are never able to be used/applied due to css always using the last values in the css.
The text was updated successfully, but these errors were encountered: