From a621c4635baf9b071b57c648c1d4a9d0d4addc2b Mon Sep 17 00:00:00 2001 From: Eliot Berriot <contact@eliotberriot.com> Date: Thu, 9 Jan 2020 10:58:11 +0100 Subject: [PATCH] Fixed overflowing text in cards --- front/src/style/_main.scss | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/front/src/style/_main.scss b/front/src/style/_main.scss index 1a6a1bd23f..c48bb0dc84 100644 --- a/front/src/style/_main.scss +++ b/front/src/style/_main.scss @@ -478,10 +478,12 @@ input + .help { border-top: 0 !important; } .content:not(.extra) { - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; - padding-bottom: 0; + &, & * { + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + padding-bottom: 0; + } } .floating.dropdown > .icon { margin-right: 0; -- GitLab