_normalize.scss 335 B

12345678910111213141516171819202122
  1. // Remove the margin in all browsers.
  2. body {
  3. margin: 0;
  4. padding: 0;
  5. }
  6. // Smooth out the fonts
  7. body {
  8. -webkit-font-smoothing: antialiased;
  9. -moz-osx-font-smoothing: grayscale;
  10. }
  11. // Needed until https://github.com/WordPress/gutenberg/pull/27518/ is merged.
  12. img {
  13. height: auto;
  14. max-width: 100%;
  15. }
  16. * {
  17. box-sizing: border-box;
  18. }