Вам просто нужно переопределить $grid-breakpoints
и $container-max-widths
.Напишите эти коды до того, как вы импортируете начальную загрузку.
Точки останова сетки
// Define the minimum dimensions at which your layout will change,
// adapting to different screen sizes, for use in media queries.
$grid-breakpoints: (
sm: 0,
md: 769px,
lg: 1443px,
) !default;
Сетка контейнеров
// Define the maximum width of `.container` for different screen sizes.
$container-max-widths: (
sm: 768px,
md: 1442px,
lg: 1920px,
) !default;