-
Notifications
You must be signed in to change notification settings - Fork 60
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
Mediaquery and maven variable #92
Comments
body {
background: transparent url('../img/image-small.jpg?c=${buildNumber}') 50% top no-repeat;
background-size: cover;
@media only screen and (min-width: 600px) {
background-image: url('../img/image-medium.jpg?c=${buildNumber}');
background-position: left top;
}
}
|
@aabenoja I should have stated that my code example was written in scss, my bad. A good css example is
Aha, it's a limitation of v3. Will it be possible in v4 of bless? |
Correct. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi
We've encountered a small issue with our current set-up.
In the code below this works great
Output
If we now add a media query, this doesn't work
Output
Expected output
Notice the missing media query
It's not possible to replace ${buildNumber} with another string/value.
Gulp-bless version 3.0.1, bless version 3.0.3.
At first I thought it was related to node-sass, but after further investigation, it seems it's related to (gulp-)bless
Thanks in advance.
Kind regards,
Yannick
The text was updated successfully, but these errors were encountered: