From 05c3964c8ec5c910a96d8594dbe8e3d36294a8ab Mon Sep 17 00:00:00 2001 From: Hunter Miller Date: Fri, 19 Jul 2024 08:53:52 -0500 Subject: [PATCH 1/2] prose-mirror: make sure links have underline --- apps/tlon-web/src/styles/components.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/tlon-web/src/styles/components.css b/apps/tlon-web/src/styles/components.css index 59e11a27f9..8108218a94 100644 --- a/apps/tlon-web/src/styles/components.css +++ b/apps/tlon-web/src/styles/components.css @@ -60,6 +60,10 @@ @apply my-0; } +.Prosemirror a { + @apply underline; +} + /* hack to prevent auto-zoom on em-emoji-picker */ @media screen and (max-width: 767px) { em-emoji-picker { From 1bb4c013581d0f4973462421cbb7118f1e5b1a1a Mon Sep 17 00:00:00 2001 From: Hunter Miller Date: Fri, 19 Jul 2024 09:07:17 -0500 Subject: [PATCH 2/2] prose-mirror: make sure links are underlined --- apps/tlon-web/src/styles/components.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/tlon-web/src/styles/components.css b/apps/tlon-web/src/styles/components.css index 8108218a94..d95530ed4a 100644 --- a/apps/tlon-web/src/styles/components.css +++ b/apps/tlon-web/src/styles/components.css @@ -60,7 +60,7 @@ @apply my-0; } -.Prosemirror a { +.ProseMirror a { @apply underline; }