Skip to content

Commit

Permalink
Fix media queries to match media-feature-range-notation rule
Browse files Browse the repository at this point in the history
  • Loading branch information
kristerkari committed Apr 10, 2023
1 parent 8f592e1 commit a72b681
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions __tests__/valid.scss
Expand Up @@ -110,7 +110,7 @@ $theme-colors: (

/* Single-line comment */

@media (min-width: 60em) {
@media (width >= 60em) {
.selector {
// Flush to parent comment
@include corner-icon("mail", top, left);
Expand Down Expand Up @@ -139,8 +139,8 @@ $theme-colors: (
// Multi-line double-slash comment
// comment
@media
screen and (min-resolution: 192dpi),
screen and (min-resolution: 2dppx) {
screen and (resolution >= 192dpi),
screen and (resolution >= 2dppx) {
.selector {
background-image:
repeating-linear-gradient(
Expand Down

0 comments on commit a72b681

Please sign in to comment.