mixin make-col-ready is not used anywhere in project but still exist
According to the documentation, this mixin can be used to define your own css classes for custom grid.
https://getbootstrap.com/docs/4.3/layout/grid/#mixins
That being said, internally, BS use instead a placeholder class (%grid-column) to define the default grid. I don't know why but I'm interested in the answer.
Maybe it's just a small mistake and we could use the mixin in _grid-framework.scss?
We moved from the mixin to the placeholder during v4 development, but for backward compatibility, we left the mixin intact. We can drop it in v5.
/cc @twbs/css-review
According to the documentation, this mixin can be used to define your own css classes for custom grid.
getbootstrap.com/docs/4.3/layout/grid/#mixins
That being said, internally, BS use instead a placeholder class (
%grid-column) to define the default grid. I don't know why but I'm interested in the answer.Maybe it's just a small mistake and we could use the mixin in
_grid-framework.scss?
That is why i was curious.
We moved from the mixin to the placeholder during v4 development, but for backward compatibility, we left the mixin intact. We can drop it in v5.
/cc @twbs/css-review
well that satisfies my question =)
@MartijnCuppens Should we remove this, or should it stay? We document this, but our own grid setup uses a different approach.
Let's ditch it if we don't use it ourselves.
So revisiting this, I think we need to leave it as-is or replace this with a Sass placeholder that mimics what's found in mixins/_grid_framework.scss. Otherwise we have a more verbose and incomplete set of grid mixins for those who role their own.
Keeping this around for now.