12345678910111213141516171819202122 |
- // Remove the margin in all browsers.
- body {
- margin: 0;
- padding: 0;
- }
- // Smooth out the fonts
- body {
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- }
- // Needed until https://github.com/WordPress/gutenberg/pull/27518/ is merged.
- img {
- height: auto;
- max-width: 100%;
- }
- * {
- box-sizing: border-box;
- }
|