No Content
No Content
I'm very new using foundation with sass, learning, and also in trouble importing "foundation" and/or it's components. I'm testing, and my app.scss is:
@import "settings";
@import "foundation";
body {
background-color: $body-bg;
color: $body-font-color;
font-size: $rem-base * 1.2;}
With the following error:
Sass::SyntaxError: File to import not found or unreadable: foundation.
If I //@import "foundation"; then it compiles correctly.
About importing components I've tested with this path: @import "foundation/components/grid"; with the same error, not found or unreadable.
So I guess my problem is related with estructure/path. How should I proceed? Need to manually copy any file from bower_components to scss folder or?
-
Foundation 5 settings doesn't work (correctly)
by Donny Oexman on Thursday, December 19, 2013 at 5:35 AM EST
-
No Content
-
No Content
I'm very new using foundation with sass, learning, and also in trouble importing "foundation" and/or it's components. I'm testing, and my app.scss is:
@import "settings";
@import "foundation";
body {
background-color: $body-bg;
color: $body-font-color;
font-size: $rem-base * 1.2;}
With the following error:
Sass::SyntaxError: File to import not found or unreadable: foundation.
If I //@import "foundation"; then it compiles correctly.
About importing components I've tested with this path: @import "foundation/components/grid"; with the same error, not found or unreadable.
So I guess my problem is related with estructure/path. How should I proceed? Need to manually copy any file from bower_components to scss folder or?