prettier/tests/stylefmt/media-queries-ranges/__snapshots__/jsfmt.spec.js.snap

24 lines
614 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`media-queries-ranges.css 1`] = `
@media (width >= 500px) and (width <= 1200px) {
.rule {color:red;}
}
@custom-media --only-medium-screen ( width >=500px ) and (width<= 1200px ) ;
@media ( --only-medium-screen ){
.rule{color:blue;}}
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@media (width >= 500px) and (width <= 1200px) {
.rule {
color: red;
}
}
@custom-media --only-medium-screen (width >=500px) and (width<= 1200px);
@media (--only-medium-screen) {
.rule {
color: blue;
}
}
`;