Качаешь исходники:
https://getbootstrap.com/docs/4.0/getting-started/... -> Download Source
Смотришь оку по софту и сборке:
https://getbootstrap.com/docs/4.0/getting-started/...
Правишь под себя scss и собираешь свой бутстрап с блекджеком и котиками =) Правда надо еще немного scss знать.
Для примера, в архиве: \bootstrap-4.0.0\scss\_variables.scss
// Grid containers
//
// Define the maximum width of `.container` for different screen sizes.
$container-max-widths: (
sm: 540px,
md: 720px,
lg: 960px,
xl: 1140px
) !default;
@include _assert-ascending($container-max-widths, "$container-max-widths");
// Grid columns
//
// Set the number of columns and specify the width of the gutters.
$grid-columns: 12 !default;
$grid-gutter-width: 30px !default;
Думаю тут все понятно, вот тебе и сетка и количество колонок и расстояния между колонками...
Там куча всего, можно даже лишнее, что тебе не надо, убрать, с пониманием что делаешь =)