如何.scss
在另一个.scss
文件中包含文件?我试图将其写入文件:app.scss:
@include('buttons');
@include('dropzone');
body {
background: $primaryColor;
overflow-x: hidden; /*Clip the left/right edges of the content inside the <div> element - if it overflows the element's content area: */
height: 100%; /* Cover all (100%) of the container for the body with its content */
padding-top: 70px;
} /* more css code here */
它返回一个错误: invalid css after @import
我尝试在主scss
文件中包括其他2个scss 文件,因此最终将全部编译为一个css
文件。这怎么可能?
您可以这样导入:
根据您的目录,它将执行您想要的操作。