Skip to content

Commit

Permalink
fix(css_parser): fix Parser is no longer progressing #3284
Browse files Browse the repository at this point in the history
  • Loading branch information
denbezrukov committed Jul 14, 2024
1 parent 5577ea5 commit 2f48fe2
Show file tree
Hide file tree
Showing 2 changed files with 517 additions and 11 deletions.
Original file line number Diff line number Diff line change
@@ -1 +1,19 @@
@media (--umrel-breakpoints$-breakpoint) {}

@media only screen and width <= 500px {
.left-block {
width: 100%;
}
}

@media only screen and (width 500px) {
.left-block {
width: 100%;
}
}

@media only screen and (width => 500px) {
.left-block {
width: 100%;
}
}
Loading

0 comments on commit 2f48fe2

Please sign in to comment.