mirror of
https://github.com/Hopiu/bootstrap.git
synced 2026-03-26 17:20:29 +00:00
Add a comment to follow-up on #17756
This commit is contained in:
parent
af13a97d51
commit
dfae3d46e4
1 changed files with 3 additions and 0 deletions
|
|
@ -46,6 +46,9 @@
|
|||
@mixin make-col-span($size, $columns: $grid-columns) {
|
||||
@if $enable-flex {
|
||||
flex: 0 0 percentage($size / $columns);
|
||||
// Add a `max-width` to ensure content within each column does not blow out
|
||||
// the width of the column. Applies to IE10+ and Firefox. Chrome and Safari
|
||||
// do not appear to require this.
|
||||
max-width: percentage($size / $columns);
|
||||
} @else {
|
||||
width: percentage($size / $columns);
|
||||
|
|
|
|||
Loading…
Reference in a new issue