Merge pull request #760 from Cucumberrbob/fix/word-break-long-torrent-names

add `word-break: break-all` to torrent name `td`
This commit is contained in:
Roger Far 2025-03-21 15:07:31 -06:00 committed by GitHub
commit 7340fb3183
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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;
}
}
}