1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-19 21:46:43 -04:00
Files
Sonarr/frontend/src/Components/Table/Cells/VirtualTableRowCell.css
T
2019-07-22 19:44:07 -07:00

15 lines
254 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: $breakpointSmall) {
.cell {
white-space: nowrap;
}
}