我使用 Yarn 在 Rails 5.1 上安装 Bootstrap 4.0.0.0 alpha6。我在这里发布我是如何安装的。所以在我的 .SCSS 中,我试图用 bootstrap 4 做一些没有样式的列表。
ul.actions {
@extend .list-unstyled;
position: absolute;
bottom: -2px;
right: 2px;
max-width: 45%;
text-align: right;
}
我有一个错误:
"ul.actions" failed to @extend ".list-unstyled".
The selector ".list-unstyled" was not found.
Use "@extend .list-unstyled !optional" if the extend should be able to fail.
所以如果我穿上我的index.html.slim
ul.actions.list-unstyle
无样式列表有效。这里发生了什么?是因为它没有安装 bootstrap-sass gem?我尝试@include list-unstyled;
并没有。在我的情况下如何使用它?