I have this, but I feel 4 is too big for my sidebar width and 3 is too small (it has to add up to 12).
-
Bootstrap 4.1+ version of Antoni's answer:
The Bootstrap mixin is now @include make-col($size, $columns: $grid-columns)
.col-md-8half {
@include make-col-ready();
@include media-breakpoint-up(md) {
@include make-col(8.5);
}
}
.col-md-3half {
@include make-col-ready();
@include media-breakpoint-up(md) {
@include make-col(3.5);
}
}
Source:
- Official documentation
- Bootstrap 4 Sass Mixins [Cheat sheet with examples]