mirror of
https://github.com/bitwarden/browser
synced 2025-12-10 21:33:27 +00:00
[PM-15958] columns shift as names get bigger (#12399)
* fix width for organizationName column * fix column widths
This commit is contained in:
@@ -46,14 +46,14 @@
|
||||
<td bitCell width="30">
|
||||
<bit-avatar [text]="row.organizationName" [id]="row.id" size="small"></bit-avatar>
|
||||
</td>
|
||||
<td bitCell width="500">
|
||||
<td bitCell width="325">
|
||||
<a [routerLink]="['/organizations', row.organizationId]">{{ row.organizationName }}</a>
|
||||
</td>
|
||||
<td bitCell>
|
||||
<span>{{ row.userCount }}</span>
|
||||
<span *ngIf="row.seats != null"> / {{ row.seats }}</span>
|
||||
</td>
|
||||
<td bitCell>
|
||||
<td bitCell width="150">
|
||||
<span>{{ row.plan }}</span>
|
||||
</td>
|
||||
<td class="table-list-options" *ngIf="manageOrganizations">
|
||||
|
||||
@@ -29,7 +29,7 @@
|
||||
<td bitCell width="30">
|
||||
<bit-avatar [text]="row.organizationName" [id]="row.id" size="small"></bit-avatar>
|
||||
</td>
|
||||
<td bitCell width="500">
|
||||
<td bitCell width="325">
|
||||
<div class="tw-flex tw-items-center tw-gap-4 tw-break-all">
|
||||
<a bitLink [routerLink]="['/organizations', row.organizationId]">{{
|
||||
row.organizationName
|
||||
@@ -45,7 +45,7 @@
|
||||
<td bitCell class="tw-whitespace-nowrap">
|
||||
<span class="tw-text-muted">{{ row.remainingSeats }}</span>
|
||||
</td>
|
||||
<td bitCell class="tw-whitespace-nowrap">
|
||||
<td width="150" bitCell class="tw-whitespace-nowrap">
|
||||
<span class="tw-text-muted">{{ row.plan | replace: " (Monthly)" : "" }}</span>
|
||||
</td>
|
||||
<td bitCell class="tw-text-right">
|
||||
|
||||
Reference in New Issue
Block a user