Skip to content
New issue

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

not compiling if two class declarations? #231

Open
damonteo opened this issue Jul 21, 2016 · 0 comments
Open

not compiling if two class declarations? #231

damonteo opened this issue Jul 21, 2016 · 0 comments

Comments

@damonteo
Copy link

damonteo commented Jul 21, 2016

hey, maybe a stupid question..

this compiles properly with ruby-sass but not with node-sass (gulp-sass):
.someclass {
@include sgs-change('gutter styles', 'opposite');
}

.someclass {
@include float-span(1);
}

Error:
WARNING: DEPRECATION: In order to remove global variable naming conflicts, Singularity's settings have been moved into the single $singularity variable. Please refer to our documentation (https://github.com/Team-Sass/Singularity/wiki) on how to update your settings. In the next version of Singularity, this warning will be removed. opposite has been returned.
Backtrace:
node_modules/singularitygs/stylesheets/singularitygs/helpers/_find.scss:37, in function find-object
node_modules/singularitygs/stylesheets/singularitygs/gutter-styles/_find.scss:14, in function find-gutter-style
node_modules/singularitygs/stylesheets/singularitygs/_api.scss:16, in mixin grid-span
node_modules/singularitygs/stylesheets/singularitygs/api/_float.scss:130, in mixin float-span
sass/base/_grids.scss:114, in mixin @content
node_modules/breakpoint-sass/stylesheets/_breakpoint.scss:66, in mixin breakpoint
sass/base/_grids.scss:15

however, this way it is compiling:
.someclass {
@include sgs-change('gutter styles', 'opposite');
@include float-span(1);
}

what am I missing?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant