mirror of
https://github.com/Readarr/Readarr.git
synced 2026-03-15 15:54:08 -04:00
15 lines
255 B
CSS
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;
|
|
}
|
|
}
|