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
Thanks for all of your work on v4! I'm enjoying working with it thus far! 😄
Sometime since the release of Alpha 3, the grid appears to have changed and now every responsive col seems to need to have .col-xs-12 in order to size correctly in XS viewports.
I wanted to make sure that this change was intentional and see if anyone can explain the reasoning behind it. I think it makes for a poorer developer experience, both because of the extra typing and because of the change in behavior from what we're used to in v3. It also seems to be at odds with a mobile-first philosophy, where you don't have to do anything for XS because it is assumed to be the default.
The text was updated successfully, but these errors were encountered:
I don't know if this behaviour is different in the new version, but if it isn't then this issue should be raised in the upstream tracker as this repository just handles the rubygem-specific code.
Thanks, Gleb, for pointing out the upstream project, and for clarifying the odd release date incongruence between the two. I was pretty confused by that last week!
For the record, the behavior I described was a bug :-) , but had already been fixed upstream when I reported it here. Doh!
Thanks for all of your work on v4! I'm enjoying working with it thus far! 😄
Sometime since the release of Alpha 3, the grid appears to have changed and now every responsive col seems to need to have
.col-xs-12
in order to size correctly in XS viewports.Correct width without col-xs-12 in alpha3:
Incorrect width without col-xs-12 in f6a7b7b:
To correct width in f6a7b7b, we must add
.col-xs-12
to every responsive col in our application:I wanted to make sure that this change was intentional and see if anyone can explain the reasoning behind it. I think it makes for a poorer developer experience, both because of the extra typing and because of the change in behavior from what we're used to in v3. It also seems to be at odds with a mobile-first philosophy, where you don't have to do anything for XS because it is assumed to be the default.
The text was updated successfully, but these errors were encountered: