From baab96fca5bad22e4720966640dc9862f620fc84 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benoi=CC=82t=20Burgener?= Date: Wed, 25 Mar 2020 14:13:58 +0100 Subject: [PATCH] Ensure visibility of links within PropRow descriptions --- lib/components/src/blocks/PropsTable/PropRow.tsx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lib/components/src/blocks/PropsTable/PropRow.tsx b/lib/components/src/blocks/PropsTable/PropRow.tsx index 3447588e599c..47aff1e268b4 100644 --- a/lib/components/src/blocks/PropsTable/PropRow.tsx +++ b/lib/components/src/blocks/PropsTable/PropRow.tsx @@ -24,6 +24,14 @@ const Description = styled.div(({ theme }) => ({ p: { margin: '0 0 10px 0', }, + + a: { + textDecoration: 'underline', + + '&:hover': { + textDecoration: 'none', + }, + }, }, code: codeCommon({ theme }),