You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Given Smurf 1.0.8
And I have the following content
content = " @media screen and (min-width: 720px) { .flight-group .date h2 { display: none; } } "
When I include Minifier in the content
class << content; include Smurf::Stylesheet::Minifier; end
And I remove the spaces inside the blocks of the content
content.remove_spaces_inside_block
Then I should get
" @media screen and (min-width: 720px) {.flight-group .date h2{display:none;} } "
But instead I get
" @media screen and (min-width: 720px) {.flight-group.dateh2{display:none;} } "
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: