feat: new matrix username view

This commit is contained in:
2022-12-23 11:41:34 +01:00
parent 39865e8299
commit 279c4830d6
2 changed files with 7 additions and 1 deletions

View File

@@ -35,7 +35,7 @@
nbPopoverTrigger="hover"
nbPopoverPlacement="bottom"
>
{{account.displayName}} (@{{account.username}})
{{account.displayName}} <span class="username">@{{account.username}}</span>
</span>
</th>
<td *ngFor="let list of lists$ | async">

View File

@@ -1,3 +1,9 @@
span.username {
font-weight: 100;
margin-left: 10px;
color: darkgray;
}
table {
display: block;
height: max(600px, calc(100vh - 300px));