Add the option to change the default gutter-y between columns.
Created by: eMtlk
v5: There is no variable to change default y-gutter between columns.
@mixin make-row($gutter: $grid-gutter-width) {
--bs-gutter-x: #{$gutter};
--bs-gutter-y: 0;
// ...
}
--bs-gutter-y is hardcoded. It would be great to have a variable to change it.