AdrianArtiles / foxslide

a jekyll/octopress theme which incorporates bootstrap, html5boilerplate, SEO practices, and a strong hero.
http://adrianartiles.com
Other
137 stars 70 forks source link

The selector ".sans" was not found #35

Open chaoyuan899 opened 9 years ago

chaoyuan899 commented 9 years ago

error sass/screen.scss (Line 93 of sass/base/_syntax.scss: "html .gist .gist-file .gist-meta" failed to @extend ".sans". The selector ".sans" was not found. Use "@extend .sans !optional" if the extend should be able to fail. ) Compilation failed in 1 files.

humburg commented 9 years ago

It is possible to resolve this by implementing the change suggested by the error message, i.e. add "!optional" for the relevant @extend directives in sass/base/_syntax.scss (there are two more). Everything seems to work fine after that but I have no idea whether the effect is as intended.

chaoyuan899 commented 9 years ago

Thanks.