Unintentional spacing in code blocks is rendered using Firefox, while it works as intended on Safari and Chrome. **[Example](https://content.nuxtjs.org/installation) with Firefox:**  A quick fix in `tailwind.config.js` is to overwrite the default `'pre code::after': { content: 'none' }` with **_the default_** (and I have no idea why): ``` module.exports = { theme: { extend: { typography: theme => ({ DEFAULT: { css: [ { 'pre code::after': { content: 'none' } } ] } }) } }, plugins: [require('@tailwindcss/typography')] } ```