zurb foundation sass:“@ charset只能在文档的根目录中使用。”

时间:2013-08-29 06:12:40

标签: sass media-queries zurb-foundation

我正在使用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"

但是,如果删除此行,则不会声明characterset。

我在这里做错了吗?

0 个答案:

没有答案