【发布时间】:2021-09-26 19:16:40
【问题描述】:
我不在我的项目中使用断点。 如何从 css 中删除所有 Bootstrap 5 断点?
【问题讨论】:
-
我正在使用SASS和网格系统。
标签: twitter-bootstrap sass bootstrap-5
我不在我的项目中使用断点。 如何从 css 中删除所有 Bootstrap 5 断点?
【问题讨论】:
标签: twitter-bootstrap sass bootstrap-5
只需设置默认 (xs) 断点...
@import "functions";
@import "variables";
$grid-breakpoints: (
xs: 0
);
@import "bootstrap";
这里是a demo,显示 *-sm、*-md *-lg 等.. 没有效果。
【讨论】: