rdt-client/client/src/app/torrent-table/torrent-table.component.scss
Cucumberrbob 4459706e79
add word-break: break-all to torrent name td
wraps text rather than making a horizontal scroll bar
2025-03-20 15:33:08 +00:00

19 lines
260 B
SCSS

table {
tr {
cursor: pointer;
td.break-all {
word-break: break-all;
}
}
}
.flex-container {
display: flex;
flex: 1 1 0;
gap: 20px;
flex-direction: row;
@media screen and (max-width: 1279px) {
flex-direction: column;
}
}