prettier/tests/stylefmt/custom-selectors/__snapshots__/jsfmt.spec.js.snap

23 lines
536 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`custom-selectors.css 1`] = `
@custom-selector :--button button,.button;
@custom-selector :--enter :hover,:focus ;
:--button {display: inline-block;
}:--button:--enter{
text-decoration:underline;
}
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@custom-selector :--button button, .button;
@custom-selector :--enter :hover, :focus;
:--button {
display: inline-block;
}
:--button:--enter {
text-decoration: underline;
}
`;