From a5aca55f587b1be5c226954b64b8c5231632f24b Mon Sep 17 00:00:00 2001 From: GhBogdan97 <36417662+GhBogdan97@users.noreply.github.com> Date: Thu, 10 Mar 2022 22:40:26 +0200 Subject: [PATCH] fix(css): update flex and overflow properties on tags (#7566) Co-authored-by: Tim Lai --- src/style/_layout.scss | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/src/style/_layout.scss b/src/style/_layout.scss index ed655b16..39962d67 100644 --- a/src/style/_layout.scss +++ b/src/style/_layout.scss @@ -91,12 +91,21 @@ font-size: 14px; font-weight: normal; - flex: 1; + flex: 2; padding: 0 10px; @include text_body(); } + + >div + { + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; + flex: 1 1 150px; + font-weight: 400; + } } .parameter__type @@ -735,7 +744,7 @@ display: flex; align-items: flex-end; - > label + > label { font-size: 12px; font-weight: bold;