sparkle
sparkle

Reputation: 7390

Zurb Foundation + Compass

I've used Zurb Foundation Framework to build my website, now I'd want to use "Sticky footer" of Compass but I cannot include Compass

gem 'zurb-foundation', :git => "https://github.com/zurb/foundation.git"
gem "compass"

Application.scss

@import "bourbon";
@import "foundation_and_overrides";
@import "buttons";
@import "font-awesome";
@import "page";
@import "pagination";
@import "footer";
@import "app";

footer.css.sass

@import compass/reset.scss
@import compass/layout.scss

+sticky-footer(72px, "#layout", "#layout_footer", "#footer")

enter image description here

Upvotes: 0

Views: 408

Answers (1)

Jesse Wolgamott
Jesse Wolgamott

Reputation: 40277

That looks like Rails4 -- compass is not yet ready for Rails4.

You could try your luck with version 2.0.alpha.0 on compass-rails -- it's been released for about 4 days now.

gem 'compass-rails', '2.0.alpha.0'

Upvotes: 1

Related Questions