2

我的站点中有一个简单的组件样式表,我正在尝试引入$zindex-fixed变量,但我的方法似乎有问题。任何帮助,将不胜感激!

我的样式表看起来像:

@use "~bootstrap/scss/variables";

.playerBar {
  position: fixed;
  left: 0px;
  bottom: 0px;
  height: 90px;
  min-width: 620px;
  width: 100%;
  z-index: variables.$zindex-fixed;
  background: #1e1e1e;
}

我收到以下错误:

SassError: Undefined mixin.
    ╷
307 │ @include _assert-ascending($grid-breakpoints, "$grid-breakpoints");
    │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    ╵
  node_modules/bootstrap/scss/_variables.scss 307:1  @use

这是使用带有 sass 1.30.0 的 Bootstrap 5.0.0-beta1。如果我可以提供更多信息来帮助诊断,请告诉我!

4

1 回答 1

2

目前没有计划在 Bootstrap v5 中支持 sass 模块系统。目前,解决方案是使用@import而不是@use

@import "~bootstrap/scss/functions";
@import "~bootstrap/scss/variables";

.playerBar {
  position: fixed;
  left: 0px;
  bottom: 0px;
  height: 90px;
  min-width: 620px;
  width: 100%;
  z-index: $zindex-fixed;
  background: #1e1e1e;
}
于 2020-12-13T18:33:48.543 回答