mirror of
https://github.com/fergalmoran/Readarr.git
synced 2026-02-10 18:07:38 +00:00
29 lines
508 B
CSS
29 lines
508 B
CSS
.path {
|
|
composes: cell from '~Components/Table/Cells/VirtualTableRowCell.css';
|
|
|
|
flex: 4 0 400px;
|
|
font-size: 13px;
|
|
font-family: $monoSpaceFontFamily;
|
|
}
|
|
|
|
.quality,
|
|
.dateAdded,
|
|
.size {
|
|
composes: cell from '~Components/Table/Cells/VirtualTableRowCell.css';
|
|
|
|
flex: 0 0 120px;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.actions {
|
|
composes: cell from '~Components/Table/Cells/VirtualTableRowCell.css';
|
|
|
|
flex: 0 0 100px;
|
|
}
|
|
|
|
.checkInput {
|
|
composes: input from '~Components/Form/CheckInput.css';
|
|
|
|
margin-top: 0;
|
|
}
|