Files
Readarr/frontend/src/Components/Table/Cells/VirtualTableRowCell.css
Mark McDowall bab45481db Fixed: Allow tables to scroll on tablets in portrait mode
(cherry picked from commit 5fb632eb46cf77ea4f61d407f6429d9c32dba766)
2025-03-26 12:35:30 +02:00

15 lines
255 B
CSS

.cell {
@add-mixin truncate;
composes: cell from '~Components/Table/Cells/TableRowCell.css';
flex-grow: 0;
flex-shrink: 1;
white-space: nowrap;
}
@media only screen and (max-width: $breakpointMedium) {
.cell {
white-space: nowrap;
}
}