From 7f57c18444fcc10d415d0cc8f302c4c8a16b3d88 Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Mon, 23 Nov 2020 12:34:19 +0100 Subject: [PATCH] Fix app location overflow in header --- src/theme.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/theme.scss b/src/theme.scss index 60a5d594b..7989dac2c 100644 --- a/src/theme.scss +++ b/src/theme.scss @@ -604,10 +604,14 @@ multiselect { margin-right: 10px; line-height: 0.7; font-size: 30px; + text-overflow: ellipsis; + white-space: nowrap; + overflow: hidden; a { white-space: nowrap; color: black; + line-height: 1.1; &:hover, &:active, @@ -619,6 +623,7 @@ multiselect { } div { + white-space: nowrap; text-align: right; padding-top: 10px; }