_measure.scss 289 B

123456789101112131415161718192021222324
  1. /**
  2. * Measure
  3. * - The width of a line of text, in characters, is known as its measure.
  4. */
  5. header *,
  6. main *,
  7. footer * {
  8. max-width: #{map-deep-get($config-global, "spacing", "measure")};
  9. }
  10. html,
  11. body,
  12. div,
  13. header,
  14. nav,
  15. article,
  16. figure,
  17. hr,
  18. main,
  19. section,
  20. footer {
  21. max-width: none;
  22. }