user391986
user391986

Reputation: 30896

using import foundation in rails

In assets/stylesheets/application.css.scss I have these lines

@import "compass/css3";

@import "foundation";

@import 'foundation-icons';

But @import "foundation" fails with this errror

Invalid CSS after "": expected media query list, was ""only screen an..."
  (in app/assets/stylesheets/application.css.scss:143)

Here is my Gemfile

gem 'rails-dev-tweaks'
gem "compass-rails"
gem "zurb-foundation", '~> 4.0.0'
gem "foundation-icons-sass-rails"
gem 'bootstrap-sass-rails'

What is the problem? I am on Windows 8.1

Upvotes: 1

Views: 322

Answers (1)

GeekRiky
GeekRiky

Reputation: 375

You have already run:

rails g foundation:install

Upvotes: 1

Related Questions