False positive “undefined variable” error when compiling SCSS

后端 未结 4 670
走了就别回头了
走了就别回头了 2020-11-22 04:02

Getting an error message when compiling my SCSS using the ruby compass gem.

run: /var/lib/gems/1.8/gems/compass-0.12.2/bin/compass compile
out: unchanged sas         


        
4条回答
  •  -上瘾入骨i
    2020-11-22 04:43

    In your compass log it states:

    A)  create css/generated/partial/catalog.css 
    B)  create css/generated/partial/base.css
    

    These need to be:

    A)  create css/generated/partial/base.css
    B)  create css/generated/partial/catalog.css 
    

    My guess is that your screen.scss has incorrect import statements.

提交回复
热议问题