mirror of
https://github.com/Readarr/Readarr
synced 2026-02-02 04:42:58 +01:00
45 lines
712 B
CSS
45 lines
712 B
CSS
.cell {
|
|
composes: cell from '~Components/Table/Cells/VirtualTableRowCell.css';
|
|
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.selectCell {
|
|
composes: cell from '~Components/Table/Cells/TableRowCell.css';
|
|
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.status,
|
|
.monitored {
|
|
composes: cell from '~Components/Table/Cells/TableRowCell.css';
|
|
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 0;
|
|
width: 20px;
|
|
}
|
|
|
|
.statusIcon {
|
|
width: 20px !important;
|
|
}
|
|
|
|
.title {
|
|
composes: cell from '~Components/Table/Cells/TableRowCell.css';
|
|
|
|
display: flex;
|
|
align-items: center;
|
|
flex-shrink: 0;
|
|
min-width: 110px;
|
|
}
|
|
|
|
.books {
|
|
composes: cell;
|
|
|
|
display: flex;
|
|
flex-grow: 4;
|
|
flex-wrap: wrap;
|
|
min-width: 400px;
|
|
}
|