mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-02 18:55:38 -04:00
15 lines
253 B
CSS
15 lines
253 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;
|
|
}
|
|
}
|