From 766117ea14643f11fba479946d42be397a4410f9 Mon Sep 17 00:00:00 2001 From: Scott Date: Mon, 21 Dec 2020 19:54:44 -0500 Subject: [PATCH] Fix extra space in code block on Firefox See: https://github.com/tailwindlabs/tailwindcss-typography/pull/41 --- tailwind.config.js | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/tailwind.config.js b/tailwind.config.js index 57b1d75..150993e 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -5,6 +5,17 @@ module.exports = { presets: [], darkMode: false, // or 'media' or 'class' theme: { + extend: { + typography: { + DEFAULT: { + css: { + "pre code::after": { + content: "none", + }, + }, + }, + }, + }, screens: { sm: "640px", md: "768px",