Min width on game version column

This commit is contained in:
jliddev
2020-10-07 10:11:19 -05:00
parent 8a98c2f26c
commit 09cbb7be4f
2 changed files with 6 additions and 2 deletions

View File

@@ -90,10 +90,10 @@
</ng-container>
<ng-container matColumnDef="addon.gameVersion">
<th mat-header-cell mat-sort-header *matHeaderCellDef>
<th class="game-version-cell" mat-header-cell mat-sort-header *matHeaderCellDef>
{{'PAGES.MY_ADDONS.TABLE.GAME_VERSION_COLUMN_HEADER' | translate}}
</th>
<td mat-cell *matCellDef="let element">
<td class="game-version-cell" mat-cell *matCellDef="let element">
{{element.addon.gameVersion}}
</td>
</ng-container>

View File

@@ -75,6 +75,10 @@
white-space: pre-wrap;
}
.game-version-cell {
min-width: 110px;
}
.status-column {
display: flex;
width: 130px;