mirror of https://github.com/rancher/ui.git
Merge pull request #2512 from n313893254/16818
Member list is cutting off on screen
This commit is contained in:
commit
d9e5167fa9
|
|
@ -60,6 +60,7 @@
|
|||
@import "app/styles/components/nav-boxes";
|
||||
@import "app/styles/components/pipeline";
|
||||
@import "app/styles/components/logging";
|
||||
@import "app/styles/components/identity-block";
|
||||
|
||||
// Vendor
|
||||
// Pretty much what it says. Vendor specific changes/overrides or includes.
|
||||
|
|
|
|||
|
|
@ -0,0 +1,8 @@
|
|||
.identity-block {
|
||||
width: 30vw;
|
||||
.gh-block-name > div {
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
}
|
||||
}
|
||||
|
|
@ -1,4 +1,5 @@
|
|||
{{yield}}
|
||||
<div class="identity-block">
|
||||
{{#if avatar}}
|
||||
<div class="gh-avatar">
|
||||
{{#if principal.avatarSrc}}
|
||||
|
|
@ -53,3 +54,4 @@
|
|||
{{/if}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
Loading…
Reference in New Issue