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
Hi,
Just found a quite weird issue when dealing with some sass code like this:
.form__field\+\+ { ... @include smallish { .form__input, .form__select { display: inline-block; width: 60%; } } ... }
It ends up generating something like this:
@media only screen and (min-width:480px){.form__field\+\+.form__input,.form__field\+\+.form__select{display:inline-block;width:60%}
As you can see this is breaking the CSS.
It should be
@media only screen and (min-width:480px){.form__field\+\+ .form__input,.form__field\+\+ .form__select{display:inline-block;width:60%}
But for some reasons the space after second escaped + is removed.
+
Any idea?
The text was updated successfully, but these errors were encountered:
This should be fixed in csswring now, npm update your modules, and let me know
npm update
Sorry, something went wrong.
Hi @iamvdo thanks a lot. Any chance you would bump gulp-pleeease or pleeease to use the right versions too?
No branches or pull requests
Hi,
Just found a quite weird issue when dealing with some sass code like this:
It ends up generating something like this:
As you can see this is breaking the CSS.
It should be
But for some reasons the space after second escaped
+
is removed.Any idea?
The text was updated successfully, but these errors were encountered: