_fixtures.js 659 B

123456789101112131415161718192021222324252627
  1. export const incorrectOrder = `
  2. div {
  3. background-color: slategray;
  4. box-sizing: border-box;
  5. flex: 1 1 auto;
  6. font-size: 1.5rem;
  7. grid-gap: 16px;
  8. order: 1;
  9. pointer-events: all;
  10. position: relative;
  11. transition: opacity 300ms ease;
  12. width: 320px;
  13. }`
  14. export const correctOrder = `
  15. div {
  16. position: relative;
  17. box-sizing: border-box;
  18. flex: 1 1 auto;
  19. grid-gap: 16px;
  20. order: 1;
  21. width: 320px;
  22. font-size: 1.5rem;
  23. pointer-events: all;
  24. background-color: slategray;
  25. transition: opacity 300ms ease;
  26. }`