lidarr/frontend/src/Components/Table/Cells/TableRowCell.css
Mark McDowall 18f13fe7f8 Fixed: Allow tables to scroll on tablets in portrait mode
(cherry picked from commit 5fb632eb46cf77ea4f61d407f6429d9c32dba766)
2025-03-25 20:58:58 +02:00

11 lines
195 B
CSS

.cell {
padding: 8px;
border-top: 1px solid var(--borderColor);
line-height: 1.52857143;
}
@media only screen and (max-width: $breakpointMedium) {
.cell {
white-space: nowrap;
}
}