我有一个应用程序,该设计要求从台式机到平板电脑或从xl到lg分别需要1280个断点。但是,Bootstrap本身的xl断点为1200。
我需要全局更改该xl断点以进行引导。我是否必须从源文件重新编译Bootstrap 4?
我尝试在我的Sass构建中设置它:
$grid-breakpoints: (
// Extra small screen / phone
xs: 0,
// Small screen / phone
sm: 576px,
// Medium screen / tablet
md: 768px,
// Large screen / desktop
lg: 992px,
// Extra large screen / wide desktop
xl: 1280px
);
$container-max-widths: (
sm: 540px,
md: 720px,
lg: 960px,
xl: 1220px
);
但是,全局xl的断点没有任何变化,它仍然会在1200px宽处进行断点。
在导入Bootstrap源之前,您需要覆盖
$grid-breakpoints
和$container-max-widths
变量。这是一个工作示例(scss):