gpt4 book ai didi

sass - 在另一个 `.scss`文件中包括 `.scss`文件?

转载 作者:行者123 更新时间:2023-12-03 11:40:53 29 4
gpt4 key购买 nike

如何在另一个.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文件。这怎么可能?

最佳答案

您可以这样导入:

@import "../../_variables";

@import "../_mixins";

@import "_main";

@import "_login";

@import "_exception";

@import "_utils";

@import "_dashboard";

@import "_landing";

根据您的目录,它将执行您想要的操作。

关于sass - 在另一个 `.scss`文件中包括 `.scss`文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38709630/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com