不要更新所有Bootstrap网格断点

时间:2018-05-18 05:48:29

标签: bootstrap-4 bootstrap-grid

我有两个问题: 1. $ container-max-width Bootstrap变量用于什么? 2.如果我需要以下分辨率,我应该如何覆盖变量?

describe

2 个答案:

答案 0 :(得分:0)

只需在引导程序导入之前导入变量,因为这些变量是使用!default标志定义的,所以当你的scss转换为css时,它将使用你的覆盖值。

$grid-breakpoints: (
  xs: 0,
  sm: 0,
  md: 769px,
  lg: 1443px,
  xl: 1921px
);

$container-max-widths: (
  sm: 540px,
  md: 720px,
  lg: 960px,
  xl: 1140px
) !default;

@import 'bootstrap'

答案 1 :(得分:0)

您只需要覆盖$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;