From b98d1b49e021dac16b10a552293daf556b979282 Mon Sep 17 00:00:00 2001 From: Michael Rose Date: Thu, 9 Mar 2017 14:21:10 -0500 Subject: [PATCH] Break long words in entry titles that could potentially overflow. --- _sass/basically-basic/_entries.scss | 23 ++++------------------- 1 file changed, 4 insertions(+), 19 deletions(-) diff --git a/_sass/basically-basic/_entries.scss b/_sass/basically-basic/_entries.scss index 983e4d6..9dcec66 100644 --- a/_sass/basically-basic/_entries.scss +++ b/_sass/basically-basic/_entries.scss @@ -63,25 +63,10 @@ } } - // hide overflowing text - // @include breakpoint($medium) { - // .entry-title { - // position: relative; - // overflow: hidden; - - // &:after { - // content: ''; - // position: absolute; - // top: 0; - // right: 0; - // bottom: 0; - // display: block; - // width: 1rem; - // height: 100%; - // background-image: linear-gradient(90deg, transparent, $background-color); - // } - // } - // } + // break long words that could overflow + .entry-title { + word-wrap: break-word; + } .entry-excerpt { @include breakpoint($medium) {