We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
gem 'arctic_admin', '~> 3.0'
this line from _base.scss breaks the scss imports: @import "components/*";
arctic_admin/app/assets/stylesheets/arctic_admin/_base.scss
Line 14 in e14aede
Error message: Sass::SyntaxError at /admin/login File to import not found or unreadable: components/*.
the issue is related to sassc (obsolete) being unable to load subfolders (this gem is installed by the font-awesome-sass dependency)
similar issues, but not the same: #15 #49
WORKAROUND: add sassc-rails to your Gemfile: gem 'sassc-rails', '~> 2.1', '>= 2.1.1'
gem 'sassc-rails', '~> 2.1', '>= 2.1.1'
The text was updated successfully, but these errors were encountered:
No branches or pull requests
gem 'arctic_admin', '~> 3.0'
this line from _base.scss breaks the scss imports:
@import "components/*";
arctic_admin/app/assets/stylesheets/arctic_admin/_base.scss
Line 14 in e14aede
Error message:
Sass::SyntaxError at /admin/login
File to import not found or unreadable: components/*.
the issue is related to sassc (obsolete) being unable to load subfolders (this gem is installed by the font-awesome-sass dependency)
similar issues, but not the same:
#15
#49
WORKAROUND:
add sassc-rails to your Gemfile:
gem 'sassc-rails', '~> 2.1', '>= 2.1.1'
The text was updated successfully, but these errors were encountered: