Skip to content

Commit

Permalink
Set a min-width on allele names in summary
Browse files Browse the repository at this point in the history
  • Loading branch information
kimrutherford committed Oct 20, 2023
1 parent af30f97 commit fb099ce
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,7 @@ table.genotype-allele-summary th, table.genotype-allele-summary td {
padding: 0.2em 2em 0.2em 0.2em;
vertical-align: top;
}

td.allele-name {
min-width: 8.5em;
}
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<td *ngIf="showProduct && i == 0" [attr.rowspan]="isDiploid ? 2 : 1">
{{expressedAllele.allele.gene?.product}}
</td>
<td>
<td class="allele-name">
<span [innerHTML]="tidyAlleleName(expressedAllele.allele.name)"></span>
</td>
<td *ngIf="hasSynonyms">
Expand Down

0 comments on commit fb099ce

Please sign in to comment.