From 16936185898cd2afc007f7e6cb9a234e58e65d74 Mon Sep 17 00:00:00 2001 From: Benji Date: Mon, 3 Mar 2025 12:24:00 -0600 Subject: [PATCH] Fix text truncation bug (#6589) The fixed height can cause the text to be cut off in other languages --- src/styles/dashboard.scss | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/src/styles/dashboard.scss b/src/styles/dashboard.scss index 93bab1048f..4fdaa3034a 100644 --- a/src/styles/dashboard.scss +++ b/src/styles/dashboard.scss @@ -214,9 +214,15 @@ div[data-role=controlgroup] a.ui-btn-active { width: 50%; } -.localUsers .cardText-secondary { - white-space: pre-wrap; - height: 3em; +.localUsers { + .cardText-secondary { + white-space: pre-wrap; + min-height: 3em; + } + + .cardBox { + height: 100%; + } } .customCssContainer textarea {