From cc04067da3dd115518711444be992b375cb75c12 Mon Sep 17 00:00:00 2001 From: Max Peintner Date: Fri, 17 Dec 2021 08:48:20 +0100 Subject: [PATCH] fix: max width container, text ellipsis overflow (#2862) --- .../src/app/modules/org-context/org-context.component.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/console/src/app/modules/org-context/org-context.component.scss b/console/src/app/modules/org-context/org-context.component.scss index 329ed7b834..8292af39b5 100644 --- a/console/src/app/modules/org-context/org-context.component.scss +++ b/console/src/app/modules/org-context/org-context.component.scss @@ -7,6 +7,7 @@ align-items: center; padding: 0; min-width: 220px; + max-width: 240px; padding-bottom: 0.5rem; position: relative; @@ -37,7 +38,11 @@ width: 100%; button { + min-height: 36px; + position: relative; + overflow: hidden; text-align: start; + text-overflow: ellipsis; } } }