storybook.less 494 B

1234567891011121314151617181920212223242526272829
  1. html > body {
  2. background-color: rgba(0, 0, 0, 0.05);
  3. background-image: repeating-linear-gradient(
  4. 0deg,
  5. transparent,
  6. transparent 7px,
  7. rgba(0, 0, 0, 0.1) 1px,
  8. transparent 8px
  9. ),
  10. repeating-linear-gradient(
  11. 90deg,
  12. transparent,
  13. transparent 7px,
  14. rgba(0, 0, 0, 0.1) 1px,
  15. transparent 8px
  16. );
  17. background-size: 8px 8px;
  18. }
  19. html {
  20. box-sizing: border-box;
  21. font-size: 14px;
  22. }
  23. *,
  24. *:before,
  25. *:after {
  26. box-sizing: inherit;
  27. }