scss 有趣的SCSS和bootstrap。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了scss 有趣的SCSS和bootstrap。相关的知识,希望对你有一定的参考价值。

// Use bootstrap sass mixins in your scss instead of litering your view with bootstrap classes.

form.stuff{
  input[type="submit"]{
    // This is where we customize our submit button
    @extend .btn;
    @extend .btn-sm;
  }
  input[type="text"], input[type="password"] { // include more types if you want.
    @extend .form-control;
  }
}

// SCSS Enumeration is a clean way to dry up styling

@each $viewName in browse, capture, search{
  &[data-view=#{$viewName}] {
    div.nav > nav > ul > li {
      a##{$viewName}{
        color: $navLinkColor;
        background-color: $hoverColor;
      }
    }
  }
}


[data-view=browse] div.nav > nav > ul > li a#browse {
  color: white;
  background-color: #a9bc3f;
}
[data-view=capture] div.nav > nav > ul > li a#capture {
  color: white;
  background-color: #a9bc3f;
}

[data-view=search] div.nav > nav > ul > li a#search {
  color: white;
  background-color: #a9bc3f;
}

以上是关于scss 有趣的SCSS和bootstrap。的主要内容,如果未能解决你的问题,请参考以下文章

在 Next.js 12 中使用带有 SCSS 的 Bootstrap

Bootstrap SCSS 中的弃用警告

bootstrap和npm - 我如何在我的项目中只导入 "reboot.scss "文件?

如何让 brunch 和 sass-brunch 编译/包含 bootstrap.scss?

图像在圆形图像上拉伸 - Bootstrap 和 SCSS

scss 添加xl步骤到bootstrap sass。应该是在bootstrap.scss之后。