From da40a3e3ad68428e9f2a804e8ebdbeecc97b8280 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Sirois Date: Tue, 12 Nov 2019 01:12:43 -0800 Subject: [PATCH] fix: correctly cut long links on words --- src/components/Markdown/styles.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Markdown/styles.tsx b/src/components/Markdown/styles.tsx index f2fb2b4..afc7f7b 100644 --- a/src/components/Markdown/styles.tsx +++ b/src/components/Markdown/styles.tsx @@ -123,7 +123,7 @@ export const MarkdownWrapper = styled.div` } a { - word-break: break-all; + word-break: break-word; color: ${props => props.theme.main.link}; cursor: pointer;