prettier/tests/stylefmt/values/__snapshots__/jsfmt.spec.js.snap

32 lines
1.1 KiB
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`values.css 1`] = `
====================================options=====================================
parsers: ["css"]
printWidth: 80
| printWidth
=====================================input======================================
.class {
background:linear-gradient(to bottom right,white,hsla(0,0%,100%,.8));
border: 1px solid rgba(0,0,0,.3);
font-family: Arial , sans-serif;
color: rgba(0, 0, 0, 1);
margin: 0 20px 0 -24px;
background-position:20% -26px;
transform-style: preserve-3d;
}
=====================================output=====================================
.class {
background: linear-gradient(to bottom right, white, hsla(0, 0%, 100%, 0.8));
border: 1px solid rgba(0, 0, 0, 0.3);
font-family: Arial, sans-serif;
color: rgba(0, 0, 0, 1);
margin: 0 20px 0 -24px;
background-position: 20% -26px;
transform-style: preserve-3d;
}
================================================================================
`;