我使用Yarn在Rails 5.1上安装Bootstrap 4.0.0.0 alpha6。 我发布here我的安装方式。 所以在我的.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;
而没有。我怎么能在我的情况下使用它?