From 2568b05fe7b46c95b1daa50d46bc60a9418a1257 Mon Sep 17 00:00:00 2001 From: Patrick Marsceill <patrick.marsceill@gmail.com> Date: Fri, 16 Nov 2018 14:54:46 -0500 Subject: [PATCH] Don't break links in body --- _sass/content.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/_sass/content.scss b/_sass/content.scss index 1dd52565..8aa9f6ca 100644 --- a/_sass/content.scss +++ b/_sass/content.scss @@ -4,6 +4,12 @@ // stylelint-disable selector-no-type, max-nesting-depth, selector-max-compound-selectors, selector-max-type .page-content { + a { + text-overflow: ellipsis; + white-space: nowrap; + overflow: hidden; + } + ul, ol { padding-left: 1.5em; -- GitLab