123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- // Jest Snapshot v1, https://goo.gl/fbAQLP
- exports[`combinator.css 1`] = `
- -Option/root .public/section ~ .public/section:before {
- }
- .x .y {}
- .x > .y {}
- .x ~ .y {}
- .x + .y {}
- .x.y {}
- .x .y {}
- .x
- .y {}
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- -Option/root .public/section ~ .public/section:before {
- }
- .x .y {
- }
- .x > .y {
- }
- .x ~ .y {
- }
- .x + .y {
- }
- .x.y {
- }
- .x .y {
- }
- .x .y {
- }
- `;
- exports[`leading.css 1`] = `
- a {
- > * {
- }
- &, > * {
- }
- + * {
- }
- }
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- a {
- > * {
- }
- &,
- > * {
- }
- + * {
- }
- }
- `;
|