prettier/tests/css_parens/__snapshots__/jsfmt.spec.js.snap

26 lines
774 B
Plaintext
Raw Normal View History

2017-05-29 22:41:04 +03:00
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`parens.js 1`] = `
a {
box-shadow: inset 0 $size $size (-$size) black;
width: calc(100% - (#{var(--g-spacing)} - #{$iframe-x-padding}) * 2);
padding-right: (100% * $info-width / (1 - $image-width));
padding-bottom:
(
100% *
$image-height / ($image-width-responsive + $image-margin-responsive * 2)
);
}
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
a {
box-shadow: inset 0 $size $size (-$size) black;
width: calc(100% - (#{var(--g-spacing)} - #{$iframe-x-padding}) * 2);
padding-right: (100% * $info-width / (1 - $image-width));
padding-bottom: (
100% * $image-height / ($image-width-responsive + $image-margin-responsive *
2)
2017-05-29 22:41:04 +03:00
);
}
`;