Asset name overflow fix

This commit is contained in:
softsimon 2022-01-21 00:16:18 +04:00
parent 347c386815
commit 36b4812e93
No known key found for this signature in database
GPG key ID: 488D7DCFB5A430D7
2 changed files with 6 additions and 1 deletions

View file

@ -21,7 +21,7 @@
<tbody>
<tr>
<td i18n="asset.name|Liquid Asset name">Name</td>
<td>{{ assetContract[2] }} ({{ assetContract[1] }})</td>
<td class="assetName">{{ assetContract[2] }} ({{ assetContract[1] }})</td>
</tr>
<tr>
<td i18n="asset.precision|Liquid Asset precision">Precision</td>

View file

@ -73,3 +73,8 @@ h1 {
.defaultIcon.skeleton {
opacity: 0.5;
}
.assetName {
word-break: break-word;
white-space: normal;
}