我正在使用 zurbs 基础框架的 scss 版本。
我在媒体查询中将辅助样式表导入到我的主样式表中,如下所示:
@media all and (min-width: 768px)
@import tablet
我正在将基础文件导入到我的主样式表和平板电脑样式表中,如下所示:
@import "foundation"
@import "foundation/components/grid"
@import "foundation/components/_buttons"
@import "foundation/components/_clearing"
@import "foundation/components/_type"
但是,当我通过 mq 将平板电脑 sass 文件添加到我的主 sass 文件中时,我收到此错误:
error foundation.scss (Line 3: @charset may only be used at the root of a document.)
此错误的来源似乎在foundation.scss 的第3 行:
@charset "UTF-8"
但是,如果我删除此行,则不会声明字符集。
我在这里做错了吗?