From 5a98cb8ac2ef64b347499a15b2f6e00c7a855591 Mon Sep 17 00:00:00 2001 From: navaneeth Date: Sat, 4 Dec 2021 23:13:54 +0530 Subject: [PATCH] App title should not overflow to next line --- frontend/src/_styles/theme.scss | 3 +++ 1 file changed, 3 insertions(+) diff --git a/frontend/src/_styles/theme.scss b/frontend/src/_styles/theme.scss index 97221ebf7d..a6df0d2fe8 100644 --- a/frontend/src/_styles/theme.scss +++ b/frontend/src/_styles/theme.scss @@ -604,6 +604,9 @@ body { line-height: 20px; font-size: 16px; font-weight: 500; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; } } }