CleanCSS icon indicating copy to clipboard operation
CleanCSS copied to clipboard

Messes up

Open aentan opened this issue 7 years ago • 0 comments

p + figure,
p + iframe {
  margin-top : 30px;
}

figure + p,
iframe + p {
  margin-top : 30px;
}

@include media(">=tablet") {
  p + figure,
  p + iframe {
    margin-top : 60px;
  }
  figure + p,
  iframe + p {
    margin-top : 60px;
  }
}

turns to

p + iframe {
  margin-top : 30px;
}

iframe + p {
  margin-top : 30px;
}

@include media(">=tablet") {
  p + figure,
  figure + p,

  p + iframe {
    margin-top : 60px;
  }

  iframe + p {
    margin-top : 60px;
  }
}

aentan avatar May 20 '17 09:05 aentan