add word-break: break-all to torrent name td

wraps text rather than making a horizontal scroll bar
This commit is contained in:
Cucumberrbob 2025-03-20 15:33:08 +00:00
parent aa6e6c7df5
commit 4459706e79
No known key found for this signature in database
GPG key ID: 2B935C47401C3614
2 changed files with 4 additions and 1 deletions

View file

@ -33,7 +33,7 @@
[checked]="selectedTorrents.contains(torrent.torrentId)"
/>
</td>
<td (click)="openTorrent(torrent.torrentId)">
<td (click)="openTorrent(torrent.torrentId)" class="break-all">
{{ torrent.rdName }}
</td>
<td>

View file

@ -1,6 +1,9 @@
table {
tr {
cursor: pointer;
td.break-all {
word-break: break-all;
}
}
}