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

Beautifying css tears @media in two lines, adds spaces in names with hyphens #656

Closed
sheershoff opened this issue Mar 18, 2015 · 1 comment

Comments

@sheershoff
Copy link

body{color:black}@media (-webkit-min-device-pixel-ratio: 2){background:white}

turns

body {
    color: black
}@
media(-webkit - min - device - pixel - ratio: 2) {
    background: white
}

while expected result is

body {
    color: black
}
@media(-webkit-min-device-pixel-ratio: 2) {
    background: white
}
@sheershoff sheershoff changed the title Beautifying css tears @media in two lines Beautifying css tears @media in two lines, adds spaces in names with hyphens Mar 18, 2015
@bitwiseman bitwiseman added this to the v1.6.0 milestone Mar 18, 2015
@bitwiseman
Copy link
Member

Fixed

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

No branches or pull requests

2 participants