Skip to content

Commit b8dc381

Browse files
committed
Fix refseq table style
1 parent 8ec6040 commit b8dc381

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/main/webapp/app/pages/genePage/GeneAdditionalInfoTable.tsx

+6-6
Original file line numberDiff line numberDiff line change
@@ -110,21 +110,21 @@ const getRefSeqText = (grch37: string, grch38: string) => {
110110
return (
111111
<div>
112112
{grch37 && (
113-
<div>
113+
<div className="d-flex">
114114
<RefSeqLinkout
115115
refSeq={grch37}
116116
referenceGenome={REFERENCE_GENOME.GRCh37}
117-
/>{' '}
118-
({REFERENCE_GENOME.GRCh37})
117+
/>
118+
<span className="ml-1">({REFERENCE_GENOME.GRCh37})</span>
119119
</div>
120120
)}
121121
{grch38 && (
122-
<div>
122+
<div className="d-flex">
123123
<RefSeqLinkout
124124
refSeq={grch38}
125125
referenceGenome={REFERENCE_GENOME.GRCh38}
126-
/>{' '}
127-
({REFERENCE_GENOME.GRCh38})
126+
/>
127+
<span className="ml-1">({REFERENCE_GENOME.GRCh38})</span>
128128
</div>
129129
)}
130130
</div>

0 commit comments

Comments
 (0)