如何将.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
我尝试在主文件中包含其他 2 个 scss 文件scss
,因此最终将全部编译为一个css
文件。这怎么可能?