Skip to content

Some media queries are removed with keepAtRules #691

@lubomirblazekcz

Description

@lubomirblazekcz

This gets removed (should work too)

@media not all and (min-width:640px) {
  .container {
    width: 100% !important;
    min-width: 100% !important
  }
}

@media not all and (width >= 640px) {
  .container {
    width: 100% !important;
    min-width: 100% !important
  }
}

This works

@media (max-width:640px) {
  .container {
    width: 100% !important;
    min-width: 100% !important
  }
}

@media (width <= 640px) {
  .container {
    width: 100% !important;
    min-width: 100% !important
  }
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions