Skip to content

Commit a5aca55

Browse files
GhBogdan97tim-lai
andauthoredMar 10, 2022
fix(css): update flex and overflow properties on tags (#7566)
Co-authored-by: Tim Lai <timothy.lai@gmail.com>
1 parent c60a32a commit a5aca55

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed
 

‎src/style/_layout.scss

+11-2
Original file line numberDiff line numberDiff line change
@@ -91,12 +91,21 @@
9191
font-size: 14px;
9292
font-weight: normal;
9393

94-
flex: 1;
94+
flex: 2;
9595

9696
padding: 0 10px;
9797

9898
@include text_body();
9999
}
100+
101+
>div
102+
{
103+
overflow: hidden;
104+
white-space: nowrap;
105+
text-overflow: ellipsis;
106+
flex: 1 1 150px;
107+
font-weight: 400;
108+
}
100109
}
101110

102111
.parameter__type
@@ -735,7 +744,7 @@
735744
display: flex;
736745
align-items: flex-end;
737746

738-
> label
747+
> label
739748
{
740749
font-size: 12px;
741750
font-weight: bold;

0 commit comments

Comments
 (0)
Please sign in to comment.