From 9f1b9a963dc59db26caf2ff262c16a53351fab62 Mon Sep 17 00:00:00 2001 From: Jan Gosmann Date: Tue, 28 Dec 2021 14:09:12 +0100 Subject: [PATCH] Fix prose link styles after @tailwind/typography update See https://github.com/tailwindlabs/tailwindcss-typography/issues/231 --- tailwind.config.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tailwind.config.js b/tailwind.config.js index 77a3ed7..536ada6 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -22,13 +22,13 @@ module.exports = { color: theme("colors.secondary.600"), textDecoration: "none", "&:hover": { - textDecoration: "underline", + textDecoration: "underline !important", }, "&:active": { - textDecoration: "underline", + textDecoration: "underline !importent", }, "&:visited": { - color: theme("colors.secondary.800"), + color: `${theme("colors.secondary.800")} !important`, }, }, },